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: Remove trailing common in enumeration
Type: Stage:
Components: Build Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: tim.peters Nosy List: tim.peters
Priority: normal Keywords: patch

Created on 2001-10-18 20:40 by anonymous, last changed 2022-04-10 16:04 by admin. This issue is now closed.

Messages (3)
msg37885 - (view) Author: Nobody/Anonymous (nobody) Date: 2001-10-18 20:40
Trying to get Python-2.2a4 built on an AIX machine, the
xlc compiler didn't like the trailing comma for the
enumeration in Python/ceval.c, line 471. The following
trivial fix let the compiler continue. 
msg37886 - (view) Author: Tim Peters (tim.peters) * (Python committer) Date: 2001-10-18 20:47
Logged In: YES 
user_id=31435

No patch was attached, but I assume you mean the trailing 
comma after WHY_YIELD.
msg37887 - (view) Author: Tim Peters (tim.peters) * (Python committer) Date: 2001-10-18 20:50
Logged In: YES 
user_id=31435

Removed the trailing comma, in

Python/ceval.c; new revision: 2.287
History
Date User Action Args
2022-04-10 16:04:32adminsetgithub: 35350
2001-10-18 20:40:27anonymouscreate