mirror of
https://github.com/github/semantic.git
synced 2024-11-28 10:15:55 +03:00
Some additional Python examples
This commit is contained in:
parent
750cfc6b17
commit
201387957a
5
test/fixtures/python/analysis/main1.py
vendored
Normal file
5
test/fixtures/python/analysis/main1.py
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
import a as b
|
||||
import b.c as e
|
||||
|
||||
b.foo(1)
|
||||
e.baz(1)
|
5
test/fixtures/python/analysis/main2.py
vendored
Normal file
5
test/fixtures/python/analysis/main2.py
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
from a import *
|
||||
from b.c import baz as bar
|
||||
|
||||
foo(1)
|
||||
bar(1)
|
Loading…
Reference in New Issue
Block a user