aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_tools/test_sundry.py
Commit message (Collapse)AuthorAge
* GH-107458: fix test_tools refleak (#107577)Kumar Aditya2023-08-03
|
* gh-104780: Remove 2to3 program and lib2to3 module (#104781)Victor Stinner2023-05-23
| | | | | | | | | * Remove the Tools/scripts/2to3 script. * Remove the Lib/test/test_lib2to3/ directory. * Doc/tools/extensions/pyspecific.py: remove the "2to3fixer" object type. * Makefile and PC/layout/main.py no longer compile lib2to3 grammar files. * Update Makefile for 2to3 removal.
* Remove non-existing tools from Sundry skiplist (#103991)Oleg Iarygin2023-04-29
|
* gh-102515: Remove unused imports in the `Lib/` directory (#102516)Alex Waygood2023-03-08
|
* gh-97669: Fix test_tools reference leak (#98216)Victor Stinner2022-10-12
| | | | | | | | test_tools.test_sundry() now uses an unittest mock to prevent the logging module to register a real "atfork" function which kept the logging module dictionary alive. So the logging module can be properly unloaded. Previously, the logging module was loaded before test_sundry(), but it's no longer the case since recent test_tools sub-tests removals.
* gh-97669: Remove outdated example scripts (#97675) (#98167)Victor Stinner2022-10-11
| | | | | | | | | | | Remove outdated example scripts of the Tools/scripts/ directory: * gprof2html.py * md5sum.py * nm2def.py * pathfix.py * win_add2path.py Remove test_gprof2html, test_md5sum and test_pathfix of test_tools.
* gh-97670: Remove sys.getdxp() and analyze_dxp.py script (#97671)Victor Stinner2022-10-04
| | | | | | | Remove the sys.getdxp() function and the Tools/scripts/analyze_dxp.py script. DXP stands for "dynamic execution pairs". They were related to DYNAMIC_EXECUTION_PROFILE and DXPAIRS macros which have been removed in Python 3.11. Python can now be built with "./configure --enable-pystats" to gather statistics on Python opcodes.
* bpo-41521: Replace whitelist/blacklist with allowlist/denylist (GH-21822)Victor Stinner2020-08-11
| | | Automerge-Triggered-By: @tiran
* bpo-40275: Use new test.support helper submodules in tests (GH-21727)Hai Shi2020-08-04
|
* bpo-37704: Remove Tools/scripts/h2py.py (GH-15000)Victor Stinner2019-07-30
| | | Use cffi to access a C API in Python.
* bpo-25094: Fix test_tools.test_sundry() on Windows (GH-8406)Victor Stinner2018-07-23
| | | | | | | | | | When Python is installed on Windows, python -m test test_tools failed because it tried to run Tools\scripts\2to3.py which requires an argument. Skip this script. On other platforms or on Windows but when run from source code (not installed), the script is called "2to3" instead of "2to.py" and so was already skipped. Modify also the unit test to unload all modules which have been loaded by the test.
* Trivial cleanups following bpo-31370 (#3649)Antoine Pitrou2017-09-18
| | | | | | * Trivial cleanups following bpo-31370 * Also cleanup the "importlib._bootstrap_external" module
* Issue #21918: Convert test_tools.py to a sub-package of test.Zachary Ware2014-07-16