xref
: /
AliOS-Things-master
/
components
/
py_engine
/
tests
/
import
/
pkg3
/
mod2.py
Home
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
print
(
"mod2 __name__:"
,
__name__
)
2
print
(
"in mod2"
)
3
4
5
def
foo
():
6
print
(
"mod2.foo()"
)
7