summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
Commit message (Collapse)AuthorAgeFilesLines
* Bump to 3.2b2.Georg Brandl2010-12-191-1/+1
|
* Fix build_ext with VS 8.0. Patch by Hirokazu Yamamoto (#9558).Éric Araujo2010-12-151-1/+1
|
* Fix wrong name in docstring and doc (#10693). Original patch by Eli Bendersky.Éric Araujo2010-12-151-1/+1
|
* Bump to 3.2b1.Georg Brandl2010-12-041-1/+1
|
* sys.abiflags is not defined on all platforms.Barry Warsaw2010-11-251-1/+6
|
* Final patch for issue 9807.Barry Warsaw2010-11-242-5/+20
|
* Fix two NameErrors in distutils (#10407)Éric Araujo2010-11-202-0/+2
|
* #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-2032-235/+233
|
* Bump to 3.2a4.Georg Brandl2010-11-131-1/+1
|
* And now for something completely different: Finish fixing #10252 again.Éric Araujo2010-11-121-1/+0
|
* Issue #10359: Remove ";" after function definition, invalid in ISO CVictor Stinner2010-11-091-1/+1
|
* Fix #10252 again (hopefully definitely). Patch by Brian Curtin.Éric Araujo2010-11-061-3/+1
|
* Correct the fix for #10252: Popen objects have no close method.Éric Araujo2010-11-062-15/+20
|
* Remove traces of Mac OS 9 support, again (#9508).Éric Araujo2010-11-064-76/+0
| | | | | | This was done in r80805 (#7908) and erroneously brought back by the distutils revert. This commit removes more code than the original, which was uncomplete. There is no NEWS entry, like in r80805.
* Prevent race condition with mkdir in distutils. Patch by Arfrever on #9281.Éric Araujo2010-11-061-3/+4
|
* Make sure each test can be run standalone (./python Lib/distutils/tests/x.py)Éric Araujo2010-11-0641-56/+86
|
* Also close file descriptors from os.popen and subprocess.PopenÉric Araujo2010-11-062-20/+26
|
* Of course, I forgot one file in r86223.Éric Araujo2010-11-051-2/+4
|
* Always close files in distutils code and tests (#10252).Éric Araujo2010-11-0523-166/+253
|
* Have distutils.sysconfig close a file to remove ResourceWarnings coming upBrett Cannon2010-10-291-1/+2
| | | | during the build from setup.py.
* Issue #6011: sysconfig and distutils.sysconfig use the surrogateescape errorVictor Stinner2010-10-232-2/+5
| | | | | | handler to parse the Makefile file. Avoid a UnicodeDecodeError if the source code directory name contains a non-ASCII character and the locale encoding is ASCII.
* Only hack cmd.library_dirs when running under Py_ENABLE_SHARED. Tested bothBarry Warsaw2010-10-221-1/+2
| | | | | with and without --enable-shared on Ubuntu 10.10. Hopefully this finally solves bug 10126. Will check 3.1 next.
* Apply fix from r85784 on py3k too.Éric Araujo2010-10-211-2/+6
| | | | | | | Fixes bug #10126 for Python 3.2 by using $RUNSHARED to find the directory to the shared library. test_distutils now passes when Python was built with --enable-shared (Barry didn’t have the error but I did).
* First (uncontroversial) part of issue 9807.Barry Warsaw2010-10-162-8/+24
| | | | | | | | | * Expose the build flags to Python as sys.abiflags * Shared library libpythonX.Y<abiflags>.so * python-config --abiflags * Make two distutils tests that failed with --enable-shared (even before this patch) succeed. * Fix a few small style issues.
* Bump to 3.2a3.Georg Brandl2010-10-101-1/+1
|
* Issue #9437: Fix building C extensions with non-default LDFLAGS.Antoine Pitrou2010-10-101-0/+5
|
* Fixed #8980: distutils.command.check was failing w/ docutils installedTarek Ziadé2010-10-032-7/+7
|
* Reverted changes which were inadvertently committed.Vinay Sajip2010-09-201-15/+11
|
* logging: added hasHandlers() to LoggerAdapter.Vinay Sajip2010-09-201-11/+15
|
* Update the test_distutils mode test to test with umask value properly.Senthil Kumaran2010-09-191-2/+7
|
* Skip the distutils mode test on Windows OS.Senthil Kumaran2010-09-181-0/+3
|
* Fix Issue2236: Distutils' mkpath implementation ignoring the "mode" parameterSenthil Kumaran2010-09-172-1/+8
|
* get_build_version() is needed even where sys.platform != "win32".Hirokazu Yamamoto2010-09-131-4/+8
| | | | Try to fix buildbot error in other way.
* Issue #9313: Use unittest.skipUnless to skip old MSVC.Hirokazu Yamamoto2010-09-131-14/+5
|
* Issue #9313: Skips test_remove_visual_c_ref on old MSVC.Hirokazu Yamamoto2010-09-121-0/+5
|
* Fix typo in option nameÉric Araujo2010-09-111-1/+1
|
* Issue #941346: Improve the build process under AIX and allow Python toAntoine Pitrou2010-09-101-0/+3
| | | | be built as a shared library. Patch by Sébastien Sablé.
* Follow-up to #9199: Fix str.join use, add newlines.Éric Araujo2010-09-081-1/+1
| | | | | Thanks to Konrad Delong for writing a test for upload_docs --show-response in distutils2, letting me catch my mistake.
* Fix incorrect use of Command.announce (#9199)Éric Araujo2010-09-071-1/+2
|
* Fix eon-old bug in build_clib options (#1718574)Éric Araujo2010-09-071-2/+2
|
* Bump to 3.2a2.Georg Brandl2010-09-051-1/+1
|
* PEP 3149 is accepted.Barry Warsaw2010-09-031-4/+3
| | | | http://mail.python.org/pipermail/python-dev/2010-September/103408.html
* remove pointless coding cookiesFlorent Xicluna2010-08-302-2/+0
|
* Use a marker in generated MANIFEST files, don't touch files without it. ↵Éric Araujo2010-08-142-4/+49
| | | | Fixes #8688.
* #7973: Fix distutils options spelling.Georg Brandl2010-08-022-2/+2
|
* #8292: Fix three instances of truth tests on return values of filter() ↵Georg Brandl2010-07-311-2/+1
| | | | (which is always true in Python 3).
* Bump versions and review NEWS file.Georg Brandl2010-07-311-1/+1
|
* Ensure that the Makefile variable expansionRonald Oussoren2010-07-232-0/+32
| | | | | | | | | | | in distutils.sysconfig matches that in the toplevel sysconfig module. Without this patch universal builds on OSX are broken. Als add a test that checks that the two version of get_config_vars agree on important values.
* reverted distutils its 3.1 state. All new work is now happening in ↵Tarek Ziadé2010-07-2263-1649/+1597
| | | | disutils2, and distutils is now feature-frozen.
* #6026: skip test_get_file_list when zlib is not available.Ezio Melotti2010-07-121-0/+1
|