summaryrefslogtreecommitdiff
path: root/Lib/packaging/command/bdist.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove packaging from the standard library.Éric Araujo2012-06-241-141/+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
* Undo potentially confusing name change in packaging.Éric Araujo2011-11-061-1/+1
| | | | | | | | | | | This method was named reinitialize_command in distutils and accompanied by a comment suggesting to change it to get_reinitialized_command. Following that, I did the change for distutils2, but it proved confusing: The Distribution object has an internal cache of command objects, to make sure only one instance is ever used, and the name get_reinitialized_command could suggest that the object returned was independent of that cache, which it was not. I’m reverting the name change to make code clearer.
* Remove obsolete mentions of the compress program and .Z archives.Éric Araujo2011-08-301-7/+6
| | | | | | Packaging uses the shutil.make_archive function copied from distutils, which does not support compress. There is no test to check that “bdist --format whatever” works, so this slipped by.
* Re-add line that was mistakenly removed alongside RPM support.Éric Araujo2011-05-311-0/+1
| | | | This reveals the need for bdist* tests.
* initial import of the packaging package in the standard libraryTarek Ziade2011-05-191-0/+141