summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_tools
Commit message (Expand)AuthorAgeFilesLines
* gh-104780: Remove 2to3 program and lib2to3 module (#104781)Victor Stinner2023-05-231-8/+0
* Remove non-existing tools from Sundry skiplist (#103991)Oleg Iarygin2023-04-291-9/+2
* gh-102515: Remove unused imports in the `Lib/` directory (#102516)Alex Waygood2023-03-081-1/+0
* gh-95731: Fix module docstring extraction in pygettext (#95732)Jakub Kuczys2022-10-151-0/+20
* gh-97669: Fix test_tools reference leak (#98216)Victor Stinner2022-10-121-1/+5
* gh-97669: Create Tools/patchcheck/ directory (#98186)Victor Stinner2022-10-121-2/+2
* gh-97669: Remove outdated example scripts (#97675) (#98167)Victor Stinner2022-10-114-253/+2
* gh-97670: Remove sys.getdxp() and analyze_dxp.py script (#97671)Victor Stinner2022-10-041-8/+1
* gh-97669: Remove outdated example scripts (#97675)Victor Stinner2022-10-044-506/+0
* gh-84623: Remove unused imports in tests (#93772)Victor Stinner2022-06-133-3/+0
* GH-91752: Skip test_freeze_simple_script when zlib is not available (#91758)Abhigyan Bose2022-05-031-1/+1
* bpo-40280: Skip socket, fork, subprocess tests on Emscripten (GH-31986)Christian Heimes2022-03-221-0/+4
* bpo-46633: Skip tests on ASAN and/or MSAN builds (GH-31632)Victor Stinner2022-03-011-0/+7
* bpo-46425: Fix direct invocation of multiple test modules (GH-30666)Nikita Sobolev2022-01-181-1/+1
* bpo-40479: Fix hashlib's usedforsecurity for OpenSSL 3.0.0 (GH-30455)Christian Heimes2022-01-131-1/+1
* bpo-45783: Preserve file moves and deletions in the tests for the freeze tool...Eric Snow2021-11-231-4/+5
* bpo-45629: Add a test for the "freeze" tool. (gh-29222)Eric Snow2021-10-281-0/+29
* Fix EncodingWarning in test_tools. (GH-28846)Inada Naoki2021-10-106-23/+27
* bpo-45042: Now test classes decorated with `requires_hashdigest` are not skip...Nikita Sobolev2021-09-041-3/+4
* bpo-36310: Allow pygettext.py to detect calls to gettext in f-strings. (GH-19...jack11422020-11-091-0/+70
* bpo-36876: Fix the C analyzer tool. (GH-22841)Eric Snow2020-10-2320-4314/+0
* bpo-41521: Replace whitelist/blacklist with allowlist/denylist (GH-21822)Victor Stinner2020-08-111-5/+5
* bpo-40275: Use new test.support helper submodules in tests (GH-21743)Hai Shi2020-08-061-4/+4
* bpo-40275: Use new test.support helper submodules in tests (GH-21727)Hai Shi2020-08-046-17/+21
* bpo-40275: Use new test.support helper submodules in tests (GH-21151)Hai Shi2020-06-251-2/+3
* bpo-41069: Make TESTFN and the CWD for tests containing non-ascii characters....Serhiy Storchaka2020-06-251-3/+5
* bpo-9216: hashlib usedforsecurity fixes (GH-20258)Christian Heimes2020-05-221-0/+2
* bpo-40443: Remove unused imports in tests (GH-19805)Victor Stinner2020-04-293-3/+1
* bpo-38870: Expose a function to unparse an ast object in the ast module (GH-1...Pablo Galindo2019-11-241-318/+0
* bpo-36876: Re-organize the c-analyzer tool code. (gh-16841)Eric Snow2019-10-1919-471/+344
* bpo-38347: find pathfix for Python scripts whose name contain a '-' (GH-16536)Ruediger Pluem2019-10-111-6/+28
* bpo-38187: Fix a refleak in Tools/c-analyzer. (gh-16304)Eric Snow2019-09-277-40/+100
* bpo-37064: Add option -a to pathfix.py tool (GH-15717)PatrikKopkan2019-09-251-17/+56
* bpo-38187: Fix reference leak in test_tools (GH-16233)Pablo Galindo2019-09-171-0/+3
* bpo-36876: Add a tool that identifies unsupported global C variables. (#15877)Eric Snow2019-09-1120-9/+4401
* bpo-37064: Skip test_tools.test_pathfix if installed (GH-15705)Victor Stinner2019-09-051-1/+5
* bpo-37064: Add option -k to Tools/scripts/pathfix.py (GH-15548)PatrikKopkan2019-09-051-0/+64
* bpo-37834: Normalise handling of reparse points on Windows (GH-15231)Steve Dower2019-08-211-2/+4
* bpo-37704: Remove Tools/scripts/h2py.py (GH-15000)Victor Stinner2019-07-301-1/+1
* bpo-37053: handle strings like u"bar" correctly in Tools/parser/unparse.py (G...Chih-Hsuan Yen2019-05-261-0/+5
* bpo-36766: Typos in docs and code comments (GH-13116)penguindustin2019-05-061-1/+1
* bpo-36776: Add @support.skip_unless_symlink to test_lll.py (GH-13058)Zackery Spytz2019-05-021-0/+1
* bpo-14546: Fix the argument handling in Tools/scripts/lll.py (GH-13026)Zackery Spytz2019-05-021-0/+38
* bpo-25094: Fix test_tools.test_sundry() on Windows (GH-8406)Victor Stinner2018-07-231-4/+14
* bpo-33189: pygettext.py now accepts only literal strings (GH-6364)Serhiy Storchaka2018-04-191-6/+65
* bpo-31920: Fixed handling directories as arguments in the ``pygettext`` scrip...Serhiy Storchaka2018-04-091-1/+25
* bpo-32222: Fix pygettext skipping docstrings for funcs with arg typehints (GH...Tobotimus2018-02-261-0/+88
* bpo-31174: Improve the code of test_tools.test_unparse. (#4146)Serhiy Storchaka2017-10-271-8/+8
* bpo-31174: Fix test_tools.test_unparse (#4102)Victor Stinner2017-10-241-2/+13
* Trivial cleanups following bpo-31370 (#3649)Antoine Pitrou2017-09-181-1/+0