Files
Rasmus Lerchedahl Petersen 362cf107a4 python: add tests for module import
- `--max-import-depth=3` to give points-to a chance
- `not_root` dir to force namespace package logic
- add usage in `example.py` to get files extracted
2023-09-29 15:10:19 +02:00

7 lines
125 B
Python

def afunc():
print("afunc called")
return 1
from foo.foo import foo_func
foo_func() # $ pt,tt="foo/foo.py:foo_func"