mirror of
https://github.com/exaloop/codon.git
synced 2025-06-03 15:03:52 +08:00
12 lines
189 B
Python
12 lines
189 B
Python
|
c = 'a.b.c'
|
||
|
def har():
|
||
|
print 'a.b.har', __name__[-12:], c
|
||
|
|
||
|
from .. import foo as fx
|
||
|
|
||
|
class A:
|
||
|
class B:
|
||
|
def b_foo():
|
||
|
print 'a.b.A.B.b_foo()'
|
||
|
return 1
|