forked from VimPlug/jedi
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
|