diff options
author | kuzmich321 <kuzmich321@yandex-team.com> | 2023-11-22 18:49:20 +0300 |
---|---|---|
committer | kuzmich321 <kuzmich321@yandex-team.com> | 2023-11-22 22:09:36 +0300 |
commit | 1d837e1d88822f2e0ac0614a20ebcfff5090c9f1 (patch) | |
tree | 4c19deb1c69cf2f86800109eb9e141063520c749 /library/python/runtime_py3/test | |
parent | 18f1b059fe9bd39ae23f0eec149df54554fd687d (diff) | |
download | ydb-1d837e1d88822f2e0ac0614a20ebcfff5090c9f1.tar.gz |
Add import callbacks for import hook
* typo-fix
* add before and after import callbacks
Diffstat (limited to 'library/python/runtime_py3/test')
-rw-r--r-- | library/python/runtime_py3/test/test_arcadia_source_finder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/python/runtime_py3/test/test_arcadia_source_finder.py b/library/python/runtime_py3/test/test_arcadia_source_finder.py index 5110abc412..9f794f0359 100644 --- a/library/python/runtime_py3/test/test_arcadia_source_finder.py +++ b/library/python/runtime_py3/test/test_arcadia_source_finder.py @@ -383,7 +383,7 @@ class TestDictionaryChangedSizeDuringIteration(ArcadiaSourceFinderTestCase): b"py/namespace/unique_prefix1/project/lib2": b"project.lib2.", } - def test_no_crash_on_recusive_iter_modules(self): + def test_no_crash_on_recursive_iter_modules(self): for package in self.arcadia_source_finder.iter_modules("project.", ""): for _ in self.arcadia_source_finder.iter_modules(package[0], ""): pass |