Skip to content

Commit 8bd5c0d

Browse files
author
martin.v.loewis
committed
Bug #1733488: Fix compilation of bufferobject.c on AIX.
Will backport to 2.5. git-svn-id: http://svn.python.org/projects/python/trunk@55829 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent b14eb3d commit 8bd5c0d

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

Misc/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ What's New in Python 2.6 alpha 1?
1212
Core and builtins
1313
-----------------
1414

15+
- Bug #1733488: Fix compilation of bufferobject.c on AIX.
16+
1517
- Bug #1722485: remove docstrings again when running with -OO.
1618

1719
- Add new attribute names for function objects. All the func_* become

Objects/bufferobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ enum buffer_t {
1919
READ_BUFFER,
2020
WRITE_BUFFER,
2121
CHAR_BUFFER,
22-
ANY_BUFFER,
22+
ANY_BUFFER
2323
};
2424

2525
static int

0 commit comments

Comments
 (0)