[Python-checkins] r55829 - in python/trunk: Misc/NEWS Objects/bufferobject.c

martin.v.loewis python-checkins at python.org
Fri Jun 8 19:29:21 CEST 2007


Author: martin.v.loewis
Date: Fri Jun  8 19:29:20 2007
New Revision: 55829

Modified:
   python/trunk/Misc/NEWS
   python/trunk/Objects/bufferobject.c
Log:
Bug #1733488: Fix compilation of bufferobject.c on AIX.
Will backport to 2.5.


Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Fri Jun  8 19:29:20 2007
@@ -12,6 +12,8 @@
 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

Modified: python/trunk/Objects/bufferobject.c
==============================================================================
--- python/trunk/Objects/bufferobject.c	(original)
+++ python/trunk/Objects/bufferobject.c	Fri Jun  8 19:29:20 2007
@@ -19,7 +19,7 @@
     READ_BUFFER,
     WRITE_BUFFER,
     CHAR_BUFFER,
-    ANY_BUFFER,
+    ANY_BUFFER
 };
 
 static int


More information about the Python-checkins mailing list