You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 01:09:52 +08:00
12 lines
208 B
Python
12 lines
208 B
Python
# Bug from 3.4 in asyncore.py
|
|
def accept():
|
|
try:
|
|
conn = 5
|
|
except TypeError:
|
|
return None
|
|
except OSError as why:
|
|
if why == 6:
|
|
raise
|
|
else:
|
|
return conn
|