mirror of
https://github.com/python/cpython.git
synced 2025-12-08 06:10:17 +00:00
[3.11] gh-106016: Add Lib/test/test_module/ directory (GH-108293) (#108304)
gh-106016: Add Lib/test/test_module/ directory (GH-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)
Co-authored-by: Victor Stinner <vstinner@python.org>
This commit is contained in:
parent
8927cf0200
commit
5be32d8818
6 changed files with 19 additions and 18 deletions
11
Lib/test/test_module/good_getattr.py
Normal file
11
Lib/test/test_module/good_getattr.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
x = 1
|
||||
|
||||
def __dir__():
|
||||
return ['a', 'b', 'c']
|
||||
|
||||
def __getattr__(name):
|
||||
if name == "yolo":
|
||||
raise AttributeError("Deprecated, use whatever instead")
|
||||
return f"There is {name}"
|
||||
|
||||
y = 2
|
||||
Loading…
Add table
Add a link
Reference in a new issue