summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_fileutils.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-46425: fix direct invocation of `test_fileutils` and `test_zoneinfo` ↵Nikita Sobolev2022-01-221-1/+1
| | | | (GH-30792)
* bpo-45506: Normalize _PyPathConfig.stdlib_dir when calculated. (#29040)Eric Snow2021-10-221-0/+30
The recently added PyConfig.stdlib_dir was being set with ".." entries. When __file__ was added for from modules this caused a problem on out-of-tree builds. This PR fixes that by normalizing "stdlib_dir" when it is calculated in getpath.c. https://bugs.python.org/issue45506