I try to write some code to catch a Broken Pipe Error. The code should run in Python 2.x and Python 3.x.
In Python 2.x a broken pipe is represented by a socket.error
socket.error: [Errno 32] Broken pipe
This was changed in Python 3.x - a broken pipe now is a BrokenPipeError
BrokenPipeError: [Errno 32] Broken pipe
Also the syntax of exception handling has changed a bit (see https://stackoverflow.com/a/34463112/263589) so what I need to do would be something like:
try:
do_something()
except BrokenPipeError as e: # implies Python 3.x
resolve_for_python2()
except socket.error as e:
if sys.version_info[0] == 2: # this is necessary, as in Python >=3.3
# socket.error is an alias of OSError
# https://docs.python.org/3/library/socket.html#socket.error
resolve_for_python3()
else:
raise
There's (at least) one remaining problem: In Python 2.x there is no BrokenPipeError
, so whenever there is an exception in do_something()
Python 2.x would throw another exception and complain that it doesn't know BrokenPipeError
. As socket.error
is deprecated in Python 3.x a similar problem could arise in Python 3.x in the near future.
What can I do to make this code run in Python 2.x and Python 3.x?