[Python-checkins] r65310 - python/trunk/Objects/exceptions.c

benjamin.peterson python-checkins at python.org
Wed Jul 30 19:45:10 CEST 2008


Author: benjamin.peterson
Date: Wed Jul 30 19:45:10 2008
New Revision: 65310

Log:
backport r64751

Modified:
   python/trunk/Objects/exceptions.c

Modified: python/trunk/Objects/exceptions.c
==============================================================================
--- python/trunk/Objects/exceptions.c	(original)
+++ python/trunk/Objects/exceptions.c	Wed Jul 30 19:45:10 2008
@@ -2045,6 +2045,7 @@
     PRE_INIT(SystemError)
     PRE_INIT(ReferenceError)
     PRE_INIT(MemoryError)
+    PRE_INIT(BufferError)
     PRE_INIT(Warning)
     PRE_INIT(UserWarning)
     PRE_INIT(DeprecationWarning)
@@ -2112,6 +2113,7 @@
     POST_INIT(SystemError)
     POST_INIT(ReferenceError)
     POST_INIT(MemoryError)
+    POST_INIT(BufferError)
     POST_INIT(Warning)
     POST_INIT(UserWarning)
     POST_INIT(DeprecationWarning)


More information about the Python-checkins mailing list