mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
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.
This commit is contained in:
parent
e8ef0bdd8c
commit
adfc118fda
6 changed files with 19 additions and 18 deletions
7
Lib/test/test_module/bad_getattr2.py
Normal file
7
Lib/test/test_module/bad_getattr2.py
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
def __getattr__():
|
||||
"Bad one"
|
||||
|
||||
x = 1
|
||||
|
||||
def __dir__(bad_sig):
|
||||
return []
|
||||
Loading…
Add table
Add a link
Reference in a new issue