summaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2014-06-30 23:31:33 -0700
committerNed Deily <nad@acm.org>2014-06-30 23:31:33 -0700
commit744a1193aa3e767cfb19c3fdb1d4f0c822ed21cd (patch)
tree30574aead5d16cbea46b3fc47e377f30612470b7 /Python
parent3c8ae8447ea03a2cd10bba13b6efa8ee48df51ab (diff)
parent529ea5d184c4b7a8ee118557c8a8f46016476e69 (diff)
downloadcpython-git-744a1193aa3e767cfb19c3fdb1d4f0c822ed21cd.tar.gz
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 2366a8c66f..840b6ee65a 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