Files
codeql/python/ql/test/3/extractor-tests/lazy-imports/test.py

13 lines
212 B
Python

# Lazy imports (PEP 810)
lazy import a
lazy from b import c
lazy from d import e as f
lazy import g.h as i
lazy from ..j import k
lazy from l import *
# Non-lazy imports
import x
from y import z
from w import *