mirror of
https://github.com/python/cpython.git
synced 2025-07-13 14:25:18 +00:00

* Move Python scripts related to test_module to this new directory: good_getattr.py and bad_getattrX.py scripts. * Move Lib/test/test_module.py to Lib/test/test_module/__init__.py.
7 lines
77 B
Python
7 lines
77 B
Python
def __getattr__():
|
|
"Bad one"
|
|
|
|
x = 1
|
|
|
|
def __dir__(bad_sig):
|
|
return []
|