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: AIX Modules/unicodedata.c does not build
Type: Stage:
Components: Build Versions:
process
Status: closed Resolution: duplicate
Dependencies: Superseder:
Assigned To: Nosy List: bhochste, hyeshik.chang
Priority: normal Keywords:

Created on 2007-06-08 13:45 by bhochste, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg32262 - (view) Author: Brad Hochstetler (bhochste) Date: 2007-06-08 13:45
There is a C++ style comment at line 78:

// forward declaration
static PyTypeObject UCD_Type;

should be

/* forward declaration */
static PyTypeObject UCD_Type;


The AIX compiler can't handle this kind of comment in a C file and will not compile it.
msg32263 - (view) Author: Hyeshik Chang (hyeshik.chang) * (Python committer) Date: 2007-06-08 13:58
Already fixed in r52695, bug #1593525.
Thank you for reporting!
History
Date User Action Args
2022-04-11 14:56:24adminsetgithub: 45059
2007-06-08 13:45:15bhochstecreate