[Python-checkins] cpython (3.4): Issue #21891: remove extraneous semicolon.

ned.deily python-checkins at python.org
Tue Jul 1 08:31:57 CEST 2014


http://hg.python.org/cpython/rev/50e924d26ba6
changeset:   91499:50e924d26ba6
branch:      3.4
parent:      91497:86c26ff25207
user:        Ned Deily <nad at acm.org>
date:        Mon Jun 30 23:31:14 2014 -0700
summary:
  Issue #21891: remove extraneous semicolon.

files:
  Python/sysmodule.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Python/sysmodule.c b/Python/sysmodule.c
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -1546,7 +1546,7 @@
 #define STRIFY(name) QUOTE(name)
 #define MAJOR STRIFY(PY_MAJOR_VERSION)
 #define MINOR STRIFY(PY_MINOR_VERSION)
-#define TAG NAME "-" MAJOR MINOR;
+#define TAG NAME "-" MAJOR MINOR
 const char *_PySys_ImplCacheTag = TAG;
 #undef NAME
 #undef QUOTE

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list