-
Notifications
You must be signed in to change notification settings - Fork 201
Python 2.x 3.x compatibility notes
Alex Willmer edited this page Aug 17, 2025
·
4 revisions
Python <= 3.2
- BaseException
- Exception
- StandardError
- EnvironmentError
- IOError
- socket.error
- OSError
- IOError
- EnvironmentError
- select.error
- StandardError
- Exception
Python >= 3.3
- BaseException
- Exception
- OSError
- BlockingIOError
- EnvironmentError
- IOError
- select.error
- socket.error
- OSError
- Exception
Refs
- https://docs.python.org/2/library/exceptions.html#exception-hierarchy
- https://docs.python.org/3/library/exceptions.html#exception-hierarchy
- https://docs.python.org/3/whatsnew/3.3.html#pep-3151
Python 3.5+ automatically retries system calls that return EINTR.