Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the regex in get_imports to support multiline try blocks and excepts with specific exception types #23725

Merged
merged 4 commits into from
May 24, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/transformers/dynamic_module_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def get_imports(filename):
content = f.read()

# filter out try/except block so in custom code we can have try/except imports
content = re.sub(r"\s*try\s*:\s*.*?\s*except\s*:", "", content, flags=re.MULTILINE)
content = re.sub(r"\s*try\s*:\s*.*?\s*except\s*.*?:", "", content, flags=re.MULTILINE | re.DOTALL)

# Imports of the form `import xxx`
imports = re.findall(r"^\s*import\s+(\S+)\s*$", content, flags=re.MULTILINE)
Expand Down
115 changes: 115 additions & 0 deletions tests/utils/test_dynamic_module_utils.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
import os

import pytest

from transformers.dynamic_module_utils import get_imports


TOP_LEVEL_IMPORT = """
import os
"""

IMPORT_IN_FUNCTION = """
def foo():
import os
return False
"""

DEEPLY_NESTED_IMPORT = """
def foo():
def bar():
if True:
import os
return False
return bar()
"""

TOP_LEVEL_TRY_IMPORT = """
import os

try:
import bar
except ImportError:
raise ValueError()
"""

TRY_IMPORT_IN_FUNCTION = """
import os

def foo():
try:
import bar
except ImportError:
raise ValueError()
"""

MULTIPLE_EXCEPTS_IMPORT = """
import os

try:
import bar
except (ImportError, AttributeError):
raise ValueError()
"""

EXCEPT_AS_IMPORT = """
import os

try:
import bar
except ImportError as e:
raise ValueError()
"""

GENERIC_EXCEPT_IMPORT = """
import os

try:
import bar
except:
raise ValueError()
"""

MULTILINE_TRY_IMPORT = """
import os

try:
import bar
import baz
except ImportError:
raise ValueError()
"""

MULTILINE_BOTH_IMPORT = """
import os

try:
import bar
import baz
except ImportError:
x = 1
raise ValueError()
"""

CASES = [
TOP_LEVEL_IMPORT,
IMPORT_IN_FUNCTION,
DEEPLY_NESTED_IMPORT,
TOP_LEVEL_TRY_IMPORT,
GENERIC_EXCEPT_IMPORT,
MULTILINE_TRY_IMPORT,
MULTILINE_BOTH_IMPORT,
MULTIPLE_EXCEPTS_IMPORT,
EXCEPT_AS_IMPORT,
TRY_IMPORT_IN_FUNCTION,
]


@pytest.mark.parametrize("case", CASES)
def test_import_parsing(tmp_path, case):
tmp_file_path = os.path.join(tmp_path, "test_file.py")
with open(tmp_file_path, "w") as _tmp_file:
_tmp_file.write(case)

parsed_imports = get_imports(tmp_file_path)
assert parsed_imports == ["os"]