mirror of
https://github.com/python/cpython.git
synced 2025-07-13 22:35:18 +00:00
Drop extra semicolon.
This commit is contained in:
parent
afe55bba33
commit
87da872c69
1 changed files with 1 additions and 1 deletions
|
@ -2050,7 +2050,7 @@ typedef struct _Py_Identifier {
|
|||
PyObject *object;
|
||||
} _Py_Identifier;
|
||||
|
||||
#define _Py_static_string(varname, value) static _Py_Identifier varname = { 0, value, 0 };
|
||||
#define _Py_static_string(varname, value) static _Py_Identifier varname = { 0, value, 0 }
|
||||
#define _Py_identifier(varname) _Py_static_string(PyId_##varname, #varname)
|
||||
|
||||
/* Return an interned Unicode object for an Identifier; may fail if there is no memory.*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue