-
-
Notifications
You must be signed in to change notification settings - Fork 30.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gh-97956: Mention generate_global_objects.py
in AC How-To
#97957
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -539,7 +539,17 @@ Let's dive in! | |
}; | ||
|
||
|
||
16. Compile, then run the relevant portions of the regression-test suite. | ||
16. Code generated by Argument Clinic might use ``_Py_ID`` macro inside. | ||
|
||
Sample:: | ||
|
||
&_Py_ID(new_unique_py_id) | ||
|
||
It means that you would need to run ``Tools/scripts/generate_global_objects.py`` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If it does, you'll have to run There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks, done! It is always great to have native-speakers to double check things like this. I think in another language and it does not translate that well into English in some cases :) |
||
script to generate global string objects for the interpreter. | ||
|
||
|
||
17. Compile, then run the relevant portions of the regression-test suite. | ||
This change should not introduce any new compile-time warnings or errors, | ||
and there should be no externally visible change to Python's behavior. | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
_Py_ID
. For example::