cpython/Lib/test/test_module/bad_getattr2.py
Victor Stinner ca47a2183a
[3.12] gh-106016: Add Lib/test/test_module/ directory (#108293) (#108306)
gh-106016: Add Lib/test/test_module/ directory (#108293)

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

(cherry picked from commit adfc118fda)
2023-08-22 22:06:07 +02:00

7 lines
77 B
Python

def __getattr__():
"Bad one"
x = 1
def __dir__(bad_sig):
return []