mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
17 lines
222 B
Python
17 lines
222 B
Python
import mmap, socket, select
|
|
|
|
try:
|
|
pass
|
|
except (OSError, mmap.error, IOError):
|
|
pass
|
|
except (OSError, socket.error, KeyError):
|
|
pass
|
|
|
|
try:
|
|
pass
|
|
except (
|
|
OSError,
|
|
select.error,
|
|
IOError,
|
|
):
|
|
pass
|