diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2022-11-07 20:06:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-07 20:06:23 (GMT) |
commit | be0d5008b3caad8e18b45ba6668556081f1c0ba5 (patch) | |
tree | a397ebde862040475e6d099e60dc99c4875f9141 /Include/internal/pycore_runtime_init.h | |
parent | 1438b779971605e516bd0a4051a704d6ffbbd58d (diff) | |
download | cpython-be0d5008b3caad8e18b45ba6668556081f1c0ba5.zip cpython-be0d5008b3caad8e18b45ba6668556081f1c0ba5.tar.gz cpython-be0d5008b3caad8e18b45ba6668556081f1c0ba5.tar.bz2 |
GH-90699: Remove remaining `_Py_IDENTIFIER` stdlib usage (GH-99067)
Diffstat (limited to 'Include/internal/pycore_runtime_init.h')
-rw-r--r-- | Include/internal/pycore_runtime_init.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/internal/pycore_runtime_init.h b/Include/internal/pycore_runtime_init.h index 8dd7a31..3acb16b 100644 --- a/Include/internal/pycore_runtime_init.h +++ b/Include/internal/pycore_runtime_init.h @@ -110,9 +110,9 @@ extern "C" { ._data = (LITERAL) \ } #define INIT_STR(NAME, LITERAL) \ - ._ ## NAME = _PyASCIIObject_INIT(LITERAL) + ._py_ ## NAME = _PyASCIIObject_INIT(LITERAL) #define INIT_ID(NAME) \ - ._ ## NAME = _PyASCIIObject_INIT(#NAME) + ._py_ ## NAME = _PyASCIIObject_INIT(#NAME) #define _PyUnicode_LATIN1_INIT(LITERAL, UTF8) \ { \ ._latin1 = { \ |