mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 05:15:12 +00:00
6 lines
161 B
Python
6 lines
161 B
Python
"""Test: explicit re-export of shadowed builtins."""
|
|
|
|
from concurrent.futures import (
|
|
CancelledError as CancelledError,
|
|
TimeoutError as TimeoutError,
|
|
)
|