1
1
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:
Timothy Clem 2018-03-09 14:02:06 -08:00
parent 750cfc6b17
commit 201387957a
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,5 @@
import a as b
import b.c as e
b.foo(1)
e.baz(1)

View File

@ -0,0 +1,5 @@
from a import *
from b.c import baz as bar
foo(1)
bar(1)