summaryrefslogtreecommitdiffstats
path: root/Lib/packaging/tests/test_command_install_dist.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove packaging from the standard library.Éric Araujo2012-06-241-241/+0
| | | | | | Distutils2 will live on on PyPI and be included in the stdlib when it is ready. See discussion starting at http://mail.python.org/pipermail/python-dev/2012-June/120430.html
* Clean up some idioms in packaging tests.Éric Araujo2011-10-191-5/+4
| | | | | | | | - Use os.makedirs (I had forgotten about it!) - Let TempdirManager.write_file call os.path.join for us - Remove custom command added by test_dist - Use a skip instead of hiding a method with an underscore - Address pyflakes warnings
* More fixes for PEP 3147 compliance in packaging (#11254)Éric Araujo2011-10-191-4/+8
|
* Packaging cleanup: remove conditionals for < 2.6 support.Éric Araujo2011-09-171-7/+5
| | | | | | | | PEP 370 features and sys.dont_write_bytecode are always available in 3.3; the distutils2 backport still has the conditionals. I also renamed an internal misnamed method and fixed a few things (“packaging2” name, stray print, unused import, fd leak).
* Minor code simplificationÉric Araujo2011-08-251-3/+2
|
* Fix test_packaging on Windows (#12678).Éric Araujo2011-08-241-2/+14
| | | | See the distutils commit message for more detail.
* Fix test_command_install_dist in shared Python buildsÉric Araujo2011-08-211-0/+1
|
* Add a test for extension modules in the old-style record fileÉric Araujo2011-08-201-1/+24
|
* Rework test_old_record a bit to make the test more exactÉric Araujo2011-08-201-13/+13
| | | | (i.e. to check the files found are what we expect)
* Packaging cleanup: remove use of script_name where obsoleteÉric Araujo2011-06-081-2/+0
|
* packaging: use with open() instead of try/finally: closeVictor Stinner2011-05-191-4/+1
|
* initial import of the packaging package in the standard libraryTarek Ziade2011-05-191-0/+210