summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/tests/test_install_lib.py
Commit message (Collapse)AuthorAgeFilesLines
* gh-92584: Remove the distutils package (#99061)Victor Stinner2022-11-031-117/+0
| | | | | | | | | | | | Remove the distutils package. It was deprecated in Python 3.10 by PEP 632 "Deprecate distutils module". For projects still using distutils and cannot be updated to something else, the setuptools project can be installed: it still provides distutils. * Remove Lib/distutils/ directory * Remove test_distutils * Remove references to distutils * Skip test_check_c_globals and test_peg_generator since they use distutils
* bpo-40280: Skip subprocess-based tests on wasm32-emscripten (GH-30615)Christian Heimes2022-01-251-1/+3
|
* bpo-5846: Do not use obsolete unittest functions. (GH-28303)Serhiy Storchaka2021-09-131-1/+1
| | | | Get rid of use of makeSuite() and findTestCases(). Also make test_math and test_threading_local discoverable.
* #27904: fix distutils tests.R David Murray2016-08-311-1/+2
| | | | Patch by Ville Skyttä.
* Issue #23731: Implement PEP 488.Brett Cannon2015-04-131-7/+6
| | | | | | The concept of .pyo files no longer exists. Now .pyc files have an optional `opt-` tag which specifies if any extra optimizations beyond the peepholer were applied.
* Issue #19600: Use specific asserts in distutils tests.Serhiy Storchaka2013-11-161-1/+1
|\
| * Issue #19600: Use specific asserts in distutils tests.Serhiy Storchaka2013-11-161-1/+1
| |
* | Issue #17177: Stop using imp in distutilsBrett Cannon2013-06-151-3/+5
|/
* More fixes for PEP 3147 compliance in distutils (#11254)Éric Araujo2011-11-031-22/+30
|
* Fix distutils byte-compilation to comply with PEP 3147 (#11254).Éric Araujo2011-10-071-4/+7
| | | | Patch by Jeff Ramnani. Tested with -B, -O and -OO.
* #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-201-4/+4
|
* Make sure each test can be run standalone (./python Lib/distutils/tests/x.py)Éric Araujo2010-11-061-1/+2
|
* reverted distutils its 3.1 state. All new work is now happening in ↵Tarek Ziadé2010-07-221-11/+6
| | | | disutils2, and distutils is now feature-frozen.
* Merged revisions 78351 via svnmerge fromR. David Murray2010-02-241-6/+11
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r78351 | r.david.murray | 2010-02-22 19:24:49 -0500 (Mon, 22 Feb 2010) | 5 lines Issue 6292: for the moment at least, the test suite passes if run with -OO. Tests requiring docstrings are skipped. Patch by Brian Curtin, thanks to Matias Torchinsky for helping review and improve the patch. ........
* Merged revisions 75669-75671 via svnmerge fromTarek Ziadé2009-10-251-0/+17
| | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75669 | tarek.ziade | 2009-10-24 17:10:37 +0200 (Sat, 24 Oct 2009) | 1 line Issue #7071: byte-compilation in Distutils now looks at sys.dont_write_bytecode ........ r75670 | tarek.ziade | 2009-10-24 17:19:03 +0200 (Sat, 24 Oct 2009) | 1 line fixed finally state in distutils.test_util ........ r75671 | tarek.ziade | 2009-10-24 17:51:30 +0200 (Sat, 24 Oct 2009) | 1 line fixed warning and error message ........
* Merged revisions 75485 via svnmerge fromTarek Ziadé2009-10-181-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75485 | tarek.ziade | 2009-10-18 11:28:26 +0200 (Sun, 18 Oct 2009) | 1 line Changed distutils tests to avoid environment alteration ........
* convert old fail* assertions to assert*Benjamin Peterson2009-06-301-3/+3
|
* Merged revisions 72547 via svnmerge fromTarek Ziadé2009-05-101-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72547 | tarek.ziade | 2009-05-10 14:36:48 +0200 (Sun, 10 May 2009) | 1 line fixed test for all platforms ........
* Merged revisions 72535 via svnmerge fromTarek Ziadé2009-05-101-0/+84
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72535 | tarek.ziade | 2009-05-10 13:42:46 +0200 (Sun, 10 May 2009) | 1 line Added tests form install_lib and pep8-fied the module ........