mirror of
https://github.com/python/cpython.git
synced 2024-11-21 21:09:37 +01:00
adfc118fda
* 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.
8 lines
77 B
Python
8 lines
77 B
Python
def __getattr__():
|
|
"Bad one"
|
|
|
|
x = 1
|
|
|
|
def __dir__(bad_sig):
|
|
return []
|