gpython icon indicating copy to clipboard operation
gpython copied to clipboard

builtins id dir function not found

Open QGB opened this issue 10 months ago • 2 comments


>>> 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

QGB avatar Apr 19 '24 05:04 QGB