mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-08 06:44:46 +08:00
15 lines
201 B
Python
15 lines
201 B
Python
""" Mainly for stupid error reports of @gwrtheyrn. :-) """
|
|
|
|
import time
|
|
|
|
class Foo(object):
|
|
global time
|
|
asdf = time
|
|
|
|
def asdfy():
|
|
return Foo
|
|
|
|
xorz = getattr(asdfy()(), 'asdf')
|
|
#? time
|
|
xorz
|