diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-07-30 17:45:10 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-07-30 17:45:10 (GMT) |
commit | c0bf76d3cfff7a0cb52baeadf635caaa177f6b55 (patch) | |
tree | ceba84d4a9ea159b1be827517feee7d9d889e493 /Objects | |
parent | ff3fdce0d27f38ebeb31d9fef7d4009b54db0dd0 (diff) | |
download | cpython-c0bf76d3cfff7a0cb52baeadf635caaa177f6b55.zip cpython-c0bf76d3cfff7a0cb52baeadf635caaa177f6b55.tar.gz cpython-c0bf76d3cfff7a0cb52baeadf635caaa177f6b55.tar.bz2 |
backport r64751
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/exceptions.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Objects/exceptions.c b/Objects/exceptions.c index c0254ff..eeebb5c 100644 --- a/Objects/exceptions.c +++ b/Objects/exceptions.c @@ -2045,6 +2045,7 @@ _PyExc_Init(void) 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 @@ _PyExc_Init(void) POST_INIT(SystemError) POST_INIT(ReferenceError) POST_INIT(MemoryError) + POST_INIT(BufferError) POST_INIT(Warning) POST_INIT(UserWarning) POST_INIT(DeprecationWarning) |