summaryrefslogtreecommitdiffstats
path: root/Lib/packaging/compiler
Commit message (Collapse)AuthorAgeFilesLines
* Remove packaging from the standard library.Éric Araujo2012-06-248-3663/+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
* Fix #13210. Port the Windows build from VS2008 to VS2010.Brian Curtin2012-05-131-5/+6
|
* Use sys.version_info instead of sys.version in packaging.Éric Araujo2012-02-101-0/+4
| | | | | | | | | | | | | 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 :)
* Remove obsolete verbose arguments from packaging.Éric Araujo2011-11-156-19/+13
| | | | | | Logging replaces verbose arguments. I haven’t fixed the example in Doc/install/install.rst because I have major fixes and changes to the oc under way and will fix or remove that example as part of that task.
* packaging cleanup: A few super I missed in 5ae03b1e147aÉric Araujo2011-11-141-6/+5
|
* Cleanup in packaging: super considered superÉric Araujo2011-10-144-11/+9
|
* Packaging cleanup: remove conditionals for < 2.6 support.Éric Araujo2011-09-173-3/+1
| | | | | | | | 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).
* Packaging: remove last mentions and uses of setup.py in the code.Éric Araujo2011-06-163-7/+6
| | | | | Now only the compatibility layer (in create, util and install) talk about setup.py.
* Use list constructor or built-in method instead of copy moduleÉric Araujo2011-06-041-4/+3
|
* The compiler class for EMX was removedÉric Araujo2011-06-012-5/+2
|
* Issue 10126 - backported distutils fix for the enable-share mode into packagingTarek Ziade2011-05-221-3/+3
|
* fix packaging.compiler.msvc9compiler: os.environ['path'] value is also a strVictor Stinner2011-05-191-2/+1
| | | | Don't encode the path list
* fix packaging.compiler.msvc9compiler: os.environ values are str, not bytesVictor Stinner2011-05-191-2/+2
|
* packaging: use with open() instead of try/finally: closeVictor Stinner2011-05-191-4/+1
|
* fixed the path splittingTarek Ziade2011-05-191-1/+2
|
* make sure split() is called before the encodingTarek Ziade2011-05-191-1/+1
|
* initial import of the packaging package in the standard libraryTarek Ziade2011-05-198-0/+3677