summaryrefslogtreecommitdiffstats
path: root/Lib/packaging/util.py
Commit message (Collapse)AuthorAgeFilesLines
* Also specify encoding when reading setup.cfg (#12320)Éric Araujo2011-06-121-1/+1
|
* Adjust logging in packaging.util.spawn (related to #11599)Éric Araujo2011-06-111-2/+3
|
* Fix assorted bugs in packaging.util.cfg_to_args (#11595).Éric Araujo2011-06-101-10/+21
| | | | Original patch by Erik Bray.
* Move useful function to packaging.util.Éric Araujo2011-06-101-6/+11
| | | | | Original patch by Erik Bray as part of #11595, changed by me to improve readability.
* Packaging cleanup: normalize print calls.Éric Araujo2011-06-081-1/+1
| | | | | Namely: use default arguments instead of explicit empty string; use multiple arguments instead of building strings.
* Update doctring now that Python has real booleansÉric Araujo2011-06-051-1/+1
|
* Improve a few docstrings in packaging.Éric Araujo2011-06-041-8/+7
| | | | | Also beautify import lists. Having them grouped by lenght makes it slightly easier to look for a module.
* Use list constructor or built-in method instead of copy moduleÉric Araujo2011-06-041-2/+1
|
* added the generate-setup actionTarek Ziade2011-06-021-1/+1
|
* Cleaned up the installer output behavior.Tarek Ziade2011-05-301-9/+10
| | | | | | This change also makes sure the logger handlers are not alterated after an installation. That also fixes the remaining environment alteration issue in test_packaging.
* fixed the separator issues in packaging/resources+configTarek Ziade2011-05-211-1/+3
|
* Close #12114: fix a potential deadlock in packaging.util._find_exe_version()Victor Stinner2011-05-211-1/+1
| | | | Avoid also zombi processes: Popen.communicate() calls its wait() method.
* Issue #12112: fix the encoding of setup.py in the packaging moduleVictor Stinner2011-05-191-3/+3
| | | | | * read: use tokenize.detect_encoding() * write: use 'utf-8'
* 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: 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/+1451