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 bhochste
Recipients
Date 2007-06-08.13:42:38
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
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
};
History
Date User Action Args
2007-08-23 14:54:45adminlinkissue1733488 messages
2007-08-23 14:54:45admincreate