[Python-checkins] cpython: Drop extra semicolon.
martin.v.loewis
python-checkins at python.org
Sun Oct 9 11:54:48 CEST 2011
http://hg.python.org/cpython/rev/57ed1e24f8f3
changeset: 72836:57ed1e24f8f3
user: Martin v. Löwis <martin at v.loewis.de>
date: Sun Oct 09 11:54:42 2011 +0200
summary:
Drop extra semicolon.
files:
Include/unicodeobject.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h
--- a/Include/unicodeobject.h
+++ b/Include/unicodeobject.h
@@ -2050,7 +2050,7 @@
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.*/
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list