diff options
Diffstat (limited to 'Objects/exceptions.c')
-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 710495f..7afaac0 100644 --- a/Objects/exceptions.c +++ b/Objects/exceptions.c @@ -1694,6 +1694,7 @@ _PyExc_Init(void) PRE_INIT(ZeroDivisionError) PRE_INIT(SystemError) PRE_INIT(ReferenceError) + PRE_INIT(BufferError) PRE_INIT(MemoryError) PRE_INIT(Warning) PRE_INIT(UserWarning) @@ -1753,6 +1754,7 @@ _PyExc_Init(void) POST_INIT(ZeroDivisionError) POST_INIT(SystemError) POST_INIT(ReferenceError) + POST_INIT(BufferError) POST_INIT(MemoryError) POST_INIT(Warning) POST_INIT(UserWarning) |