diff options
-rw-r--r-- | Misc/NEWS | 2 | ||||
-rw-r--r-- | Objects/bufferobject.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -12,6 +12,8 @@ What's New in Python 2.6 alpha 1? Core and builtins ----------------- +- Bug #1733488: Fix compilation of bufferobject.c on AIX. + - Bug #1722485: remove docstrings again when running with -OO. - Add new attribute names for function objects. All the func_* become diff --git a/Objects/bufferobject.c b/Objects/bufferobject.c index 5f3c7a9..86515ab 100644 --- a/Objects/bufferobject.c +++ b/Objects/bufferobject.c @@ -19,7 +19,7 @@ enum buffer_t { READ_BUFFER, WRITE_BUFFER, CHAR_BUFFER, - ANY_BUFFER, + ANY_BUFFER }; static int |