diff options
Diffstat (limited to 'Include/object.h')
| -rw-r--r-- | Include/object.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Include/object.h b/Include/object.h index a36c5be..27f48a5 100644 --- a/Include/object.h +++ b/Include/object.h @@ -147,9 +147,10 @@ typedef struct _Py_Identifier { #define _Py_static_string(varname, value) static _Py_Identifier varname = _Py_static_string_init(value) #define _Py_IDENTIFIER(varname) _Py_static_string(PyId_##varname, #varname) -/* Common identifiers */ -PyAPI_DATA(_Py_Identifier) _PyId_path; +/* Common identifiers (ex: _PyId_path is the string "path") */ PyAPI_DATA(_Py_Identifier) _PyId_argv; +PyAPI_DATA(_Py_Identifier) _PyId_builtins; +PyAPI_DATA(_Py_Identifier) _PyId_path; PyAPI_DATA(_Py_Identifier) _PyId_stdin; PyAPI_DATA(_Py_Identifier) _PyId_stdout; PyAPI_DATA(_Py_Identifier) _PyId_stderr; |
