This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: sysmodule.c, #define terminated with semicolon.
Type: Stage: resolved
Components: Versions: Python 3.4, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: John.Malmberg, ned.deily, python-dev
Priority: normal Keywords:

Created on 2014-07-01 04:40 by John.Malmberg, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg222007 - (view) Author: John Malmberg (John.Malmberg) * Date: 2014-07-01 04:40
Minor issue, the #define TAG line incorrectly is terminated with a semicolon.

This results in a double semicolon on the following line where the macro is expanded.

As this is an informational message, this is just cosmetic.

Listing fragment:

␉·······  25861 #define MAJOR STRIFY(PY_MAJOR_VERSION)
␉·······  25862 #define MINOR STRIFY(PY_MINOR_VERSION)
␉·······  25863 #define TAG NAME "-" MAJOR MINOR;
␉·······  25864 const char *_PySys_ImplCacheTag = TAG;
␉·······␉·······.....................................1
%CC-I-EXTRASEMI, (1) Extraneous semicolon.

       E␉·······                                "cpython" "-" "3" "5" ;
msg222014 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-07-01 06:31
New changeset 50e924d26ba6 by Ned Deily in branch '3.4':
Issue #21891: remove extraneous semicolon.
http://hg.python.org/cpython/rev/50e924d26ba6

New changeset fc527ecb4487 by Ned Deily in branch 'default':
Issue #21891: remove extraneous semicolon.
http://hg.python.org/cpython/rev/fc527ecb4487
msg222015 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2014-07-01 06:32
Thanks for the report!
History
Date User Action Args
2022-04-11 14:58:05adminsetgithub: 66090
2014-07-01 06:32:38ned.deilysetstatus: open -> closed

versions: + Python 3.4
nosy: + ned.deily

messages: + msg222015
resolution: fixed
stage: resolved
2014-07-01 06:31:57python-devsetnosy: + python-dev
messages: + msg222014
2014-07-01 04:40:46John.Malmbergcreate