You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
>>> import builtins
>>> builtins.id
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: "'module' has no attribute 'id'"
>>>
>>> builtins.dir
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: "'module' has no attribute 'dir'"
vars
The text was updated successfully, but these errors were encountered:
>>> exec('print(locals())',{1:2},{})
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
FIXME line of source goes here
KeyError: 'FIXME can only have string keys!: 1'
>>> exec('print(locals())',{'1':2},{'3':3})
{'3': 3}
>>> eval('print(locals())',{'1':2},{'3':3})
{'3': 3}
The text was updated successfully, but these errors were encountered: