diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2011-10-09 09:54:42 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2011-10-09 09:54:42 (GMT) |
commit | 87da872c69757c80edaee126663ea141bae3d94c (patch) | |
tree | 72105c36983afed939d9efc005b1aeb51c3e4079 /Include | |
parent | afe55bba33a20f87a58f940186359237064b428f (diff) | |
download | cpython-87da872c69757c80edaee126663ea141bae3d94c.zip cpython-87da872c69757c80edaee126663ea141bae3d94c.tar.gz cpython-87da872c69757c80edaee126663ea141bae3d94c.tar.bz2 |
Drop extra semicolon.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/unicodeobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h index f90e0bd..8fbad09 100644 --- a/Include/unicodeobject.h +++ b/Include/unicodeobject.h @@ -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.*/ |