summaryrefslogtreecommitdiffstats
path: root/Lib/packaging/depgraph.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove packaging from the standard library.Éric Araujo2012-06-241-270/+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
* Remove redundant __main__ blocks from packaging modules.Éric Araujo2011-11-061-4/+1
| | | | | The one interface we commit to maintain is the run module (a.k.a. the pysetup script).
* Minor packaging cleanup.Éric Araujo2011-07-291-2/+2
| | | | | - Use shortcut dist.version instead of going through metadata; - Use %r throughout to display project names and paths.
* Style change in packaging: use “not in” over “not x in”.Éric Araujo2011-06-081-4/+4
| | | | Such tests are IMO easier to read if both operators are grouped.
* Packaging: always use repr to display project names.Éric Araujo2011-06-081-7/+8
| | | | This helps debugging in case of trailing blanks and such things.
* Packaging cleanup: normalize print calls.Éric Araujo2011-06-081-2/+4
| | | | | Namely: use default arguments instead of explicit empty string; use multiple arguments instead of building strings.
* initial import of the packaging package in the standard libraryTarek Ziade2011-05-191-0/+270