summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_module
Commit message (Collapse)AuthorAgeFilesLines
* gh-81682: Fix test failures when CPython is built without docstrings (GH-113410)Serhiy Storchaka2023-12-231-1/+1
|
* gh-112414: Add additional unit tests for calling `repr()` on a namespace ↵Alex Waygood2023-11-281-0/+30
| | | | | package (#112475) Co-authored-by: Eric Snow <ericsnowcurrently@gmail.com>
* gh-108303: Move more files to `Lib/test/test_module` (#111880)Nikita Sobolev2023-11-093-1/+39
|
* gh-108303: Move `ann_module*.py` files to `typinganndata/` folder (#108354)Nikita Sobolev2023-08-231-1/+3
|
* gh-106016: Add Lib/test/test_module/ directory (#108293)Victor Stinner2023-08-225-0/+395
* 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.