summaryrefslogtreecommitdiff
path: root/Lib/packaging/pypi
Commit message (Collapse)AuthorAgeFilesLines
* Remove packaging from the standard library.Éric Araujo2012-06-248-1453/+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
* Use sys.version_info instead of sys.version in packaging.Éric Araujo2012-02-101-2/+2
| | | | | | | | | | | | | The contents of this attribute are an implementation detail, as documented for #9442, so we should not parse it, to support non-CPython VMs with distutils2 in the future. Unfortunately, one use comes directly from PEP 345, so an edit will have to be agreed before fixing the code (see comment in p7g.markers). Other remaining uses are found in p7g.compiler and could be replaced by the platform module (which also parses sys.version, but then it wouldn’t be my fault :)
* Merge 3.2, fix typos.Florent Xicluna2011-11-112-2/+2
|
* Remove two unneeded attributes in packagingÉric Araujo2011-09-211-5/+3
|
* Final bag of small changes coming from distutils2.Éric Araujo2011-09-191-4/+3
| | | | | | | | | - minor cleanup in Metadata - trigger creation of the sysconfig._CONFIG_VARS dict - home_page is used over home-page: it’s not a compound word, it’s an escaped space Distutils2 is now synchronized with Packaging.
* Use bytes regex instead of decoding whole pagesÉric Araujo2011-09-101-12/+10
|
* Fix typoÉric Araujo2011-06-191-1/+1
|
* Make decorators used in packaging preserve docstringsÉric Araujo2011-06-171-5/+7
|
* Remove unused code in packaging.pypi.distÉric Araujo2011-06-161-4/+1
|
* Style change in packaging: use “not in” over “not x in”.Éric Araujo2011-06-082-5/+5
| | | | Such tests are IMO easier to read if both operators are grouped.
* Fix misunderstanding of how booleans workÉric Araujo2011-06-081-1/+2
|
* Cleanup in packaging: don’t unnecessarily instantiate exceptionsÉric Araujo2011-06-042-2/+2
|
* Fix typos in class namesÉric Araujo2011-06-012-6/+6
|
* Cleaned up the installer output behavior.Tarek Ziade2011-05-301-4/+6
| | | | | | 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.
* make sure the crawler can browse file-based indexes under win32Tarek Ziade2011-05-211-4/+14
|
* initial import of the packaging package in the standard libraryTarek Ziade2011-05-198-0/+1446