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.

Author John.Malmberg
Recipients John.Malmberg
Date 2014-07-01.04:40:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1404189646.68.0.928359332954.issue21891@psf.upfronthosting.co.za>
In-reply-to
Content
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" ;
History
Date User Action Args
2014-07-01 04:40:46John.Malmbergsetrecipients: + John.Malmberg
2014-07-01 04:40:46John.Malmbergsetmessageid: <1404189646.68.0.928359332954.issue21891@psf.upfronthosting.co.za>
2014-07-01 04:40:46John.Malmberglinkissue21891 messages
2014-07-01 04:40:46John.Malmbergcreate