summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2014-07-01 06:31:14 (GMT)
committerNed Deily <nad@acm.org>2014-07-01 06:31:14 (GMT)
commit529ea5d184c4b7a8ee118557c8a8f46016476e69 (patch)
treeef784a4d8820fd3589be4ac4d37dc3cb4f0c25b8 /Python
parent8cefd08943a69481957ab1fd00edaf03f0562ae5 (diff)
downloadcpython-529ea5d184c4b7a8ee118557c8a8f46016476e69.zip
cpython-529ea5d184c4b7a8ee118557c8a8f46016476e69.tar.gz
cpython-529ea5d184c4b7a8ee118557c8a8f46016476e69.tar.bz2
Issue #21891: remove extraneous semicolon.
Diffstat (limited to 'Python')
-rw-r--r--Python/sysmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index 2366a8c..840b6ee 100644
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -1546,7 +1546,7 @@ const char *_PySys_ImplName = NAME;
#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