Skip to content

Commit 529ea5d

Browse files
committed
Issue #21891: remove extraneous semicolon.
1 parent 8cefd08 commit 529ea5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/sysmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1546,7 +1546,7 @@ const char *_PySys_ImplName = NAME;
15461546
#define STRIFY(name) QUOTE(name)
15471547
#define MAJOR STRIFY(PY_MAJOR_VERSION)
15481548
#define MINOR STRIFY(PY_MINOR_VERSION)
1549-
#define TAG NAME "-" MAJOR MINOR;
1549+
#define TAG NAME "-" MAJOR MINOR
15501550
const char *_PySys_ImplCacheTag = TAG;
15511551
#undef NAME
15521552
#undef QUOTE

0 commit comments

Comments
 (0)