[Python-checkins] r55830 - in python/branches/release25-maint: Misc/NEWS Objects/bufferobject.c

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


Author: martin.v.loewis
Date: Fri Jun  8 19:29:40 2007
New Revision: 55830

Modified:
   python/branches/release25-maint/Misc/NEWS
   python/branches/release25-maint/Objects/bufferobject.c
Log:
Bug #1733488: Fix compilation of bufferobject.c on AIX.


Modified: python/branches/release25-maint/Misc/NEWS
==============================================================================
--- python/branches/release25-maint/Misc/NEWS	(original)
+++ python/branches/release25-maint/Misc/NEWS	Fri Jun  8 19:29:40 2007
@@ -9,6 +9,12 @@
 
 *Release date: XX-XXX-XXXX*
 
+Core and builtins
+-----------------
+
+- Bug #1733488: Fix compilation of bufferobject.c on AIX.
+
+
 Library
 -------
 

Modified: python/branches/release25-maint/Objects/bufferobject.c
==============================================================================
--- python/branches/release25-maint/Objects/bufferobject.c	(original)
+++ python/branches/release25-maint/Objects/bufferobject.c	Fri Jun  8 19:29:40 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