cpython/Lib/exceptions.py
Barry Warsaw 9357854187 For backwards compatibility, simply import everything from the
_exceptions module, including __doc__.
2000-05-25 23:15:52 +00:00

4 lines
188 B
Python

# Standard class-base exceptions are now all implemented in C. This remains
# for backwards compatibility with pre-1.6 releases.
from _exceptions import *
from _exceptions import __doc__