summaryrefslogtreecommitdiff
path: root/Lib/packaging/command/install_distinfo.py
Commit message (Collapse)AuthorAgeFilesLines
* Use more standard name for one option of packaging’s install_distinfoÉric Araujo2011-11-061-13/+12
|
* Fix writing of the RESOURCES file by packaging (#12386)Éric Araujo2011-10-141-1/+1
|
* Fix typo and wordingÉric Araujo2011-09-181-1/+1
|
* Packaging cleanup: remove conditionals for < 2.6 support.Éric Araujo2011-09-171-4/+3
| | | | | | | | 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).
* Factor out the distribution file-system safe name functions from ↵Jeremy Kloth2011-09-121-31/+1
| | | | install_distinfo to allow all metadata consumers access to them.
* Fix usage of dry-run in packaging bdist_wininst and install_distinfo.Éric Araujo2011-09-101-37/+37
| | | | | | | In dry-run mode, packaging commands should log the same info as in real operation and should collect the same files in self.outputs, so that users can run a command in verbose and dry-run mode to see exactly what operations will be done in the real run.
* Minor cleanupÉric Araujo2011-08-201-7/+7
| | | | | | - Rename an attribute and create it in initialize_options instead of finalize_options to match the other install_* classes - Remove unnecessary method call in tests
* use the same line terminator everywhereTarek Ziade2011-05-211-2/+2
|
* package: replace open(fn, 'w').close() by open(fn, 'wb').close()Victor Stinner2011-05-191-1/+1
| | | | | We don't need to open the files in text mode just to create them (or update their modification time).
* packaging: don't use locale encoding to compute MD5 checksumsVictor Stinner2011-05-191-2/+2
| | | | Open the file in binary mode or use UTF-8 encoding.
* initial import of the packaging package in the standard libraryTarek Ziade2011-05-191-0/+175