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 Objects/buffereobject.c does not build on AIX
Type: Stage:
Components: Build Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: bhochste, loewis
Priority: normal Keywords:

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

Messages (2)
msg32260 - (view) Author: Brad Hochstetler (bhochste) Date: 2007-06-08 13:42
The file Objects/bufferobject.c does not build on AIX. This is do to a comma being inserted on the last item of the enum type buffer_t. If this comma is removed, which is legal C, then the file builds properly.

The change is on line 22:

enum buffer_t {
    READ_BUFFER,
    WRITE_BUFFER,
    CHAR_BUFFER,
    ANY_BUFFER,
};


to 

enum buffer_t {
    READ_BUFFER,
    WRITE_BUFFER,
    CHAR_BUFFER,
    ANY_BUFFER
};
msg32261 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2007-06-08 17:30
Thanks for the report. This is now fixed in r55829 and r55830
History
Date User Action Args
2022-04-11 14:56:24adminsetgithub: 45058
2007-06-08 13:42:38bhochstecreate