Merge pull request #13819 from yoff/python/relax-module-resolution

Python: Relax module resolution
This commit is contained in:
Rasmus Wriedt Larsen
2023-08-16 12:04:49 +02:00
committed by GitHub
3 changed files with 21 additions and 2 deletions

View File

@@ -17,6 +17,6 @@ Since PEP 420 was accepted in Python 3, this test is Python 3 only.
from foo.bar.a import afunc
from foo_explicit.bar.a import explicit_afunc
afunc() # $ MISSING: pt,tt=afunc
afunc() # $ pt,tt="foo/bar/a.py:afunc"
explicit_afunc() # $ pt,tt="foo_explicit/bar/a.py:explicit_afunc"