8000 GH-90699: Remove remaining `_Py_IDENTIFIER` stdlib usage by kumaraditya303 · Pull Request #99067 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

GH-90699: Remove remaining _Py_IDENTIFIER stdlib usage #99067

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

Merged
merged 14 commits into from
Nov 7, 2022
Prev Previous commit
Next Next commit
add comment
  • Loading branch information
kumaraditya303 authored Nov 4, 2022
commit 350b9c57d5690f6bf88642a3893500b82a4087ae
4 changes: 2 additions & 2 deletions Include/internal/pycore_global_strings.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ extern "C" {

// The data structure & init here are inspired by Tools/build/deepfreeze.py.

// All field names generated by ASCII_STR() have a common prefix,
// to help avoid collisions with keywords, etc.
// All field names generated by STRUCT_FOR_ID() have a common prefix "__id__",
// to help avoid collisions with keywords, functions, etc.

#define STRUCT_FOR_ASCII_STR(LITERAL) \
struct { \
Expand Down
0