summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_module/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* [3.13] gh-118846: Fix free-threading test failures when run sequentially ↵Miss Islington (bot)2024-05-101-0/+3
| | | | | | | | | | | (GH-118864) (#118927) The free-threaded build currently immortalizes some objects once the first thread is started. This can lead to test failures depending on the order in which tests are run. This PR addresses those failures by suppressing immortalization or skipping the affected tests. (cherry picked from commit b309c8ebff011f27012367b046ff92eecbdd68a5) Co-authored-by: Sam Gross <colesbury@gmail.com>
* 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-091-1/+1
|
* 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-221-0/+368
* 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.