mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
- `--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
7 lines
125 B
Python
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"
|