| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Bump to 3.2a4. | Georg Brandl | 2010-11-13 | 1 | -1/+1 |
| | | |||||
| * | And now for something completely different: Finish fixing #10252 again. | Éric Araujo | 2010-11-12 | 1 | -1/+0 |
| | | |||||
| * | Issue #10359: Remove ";" after function definition, invalid in ISO C | Victor Stinner | 2010-11-09 | 1 | -1/+1 |
| | | |||||
| * | Fix #10252 again (hopefully definitely). Patch by Brian Curtin. | Éric Araujo | 2010-11-06 | 1 | -3/+1 |
| | | |||||
| * | Correct the fix for #10252: Popen objects have no close method. | Éric Araujo | 2010-11-06 | 2 | -15/+20 |
| | | |||||
| * | Remove traces of Mac OS 9 support, again (#9508). | Éric Araujo | 2010-11-06 | 4 | -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 Araujo | 2010-11-06 | 1 | -3/+4 |
| | | |||||
| * | Make sure each test can be run standalone (./python Lib/distutils/tests/x.py) | Éric Araujo | 2010-11-06 | 41 | -56/+86 |
| | | |||||
| * | Also close file descriptors from os.popen and subprocess.Popen | Éric Araujo | 2010-11-06 | 2 | -20/+26 |
| | | |||||
| * | Of course, I forgot one file in r86223. | Éric Araujo | 2010-11-05 | 1 | -2/+4 |
| | | |||||
| * | Always close files in distutils code and tests (#10252). | Éric Araujo | 2010-11-05 | 23 | -166/+253 |
| | | |||||
| * | Have distutils.sysconfig close a file to remove ResourceWarnings coming up | Brett Cannon | 2010-10-29 | 1 | -1/+2 |
| | | | | | during the build from setup.py. | ||||
| * | Issue #6011: sysconfig and distutils.sysconfig use the surrogateescape error | Victor Stinner | 2010-10-23 | 2 | -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 both | Barry Warsaw | 2010-10-22 | 1 | -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 Araujo | 2010-10-21 | 1 | -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 Warsaw | 2010-10-16 | 2 | -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 Brandl | 2010-10-10 | 1 | -1/+1 |
| | | |||||
| * | Issue #9437: Fix building C extensions with non-default LDFLAGS. | Antoine Pitrou | 2010-10-10 | 1 | -0/+5 |
| | | |||||
| * | Fixed #8980: distutils.command.check was failing w/ docutils installed | Tarek Ziadé | 2010-10-03 | 2 | -7/+7 |
| | | |||||
| * | Reverted changes which were inadvertently committed. | Vinay Sajip | 2010-09-20 | 1 | -15/+11 |
| | | |||||
| * | logging: added hasHandlers() to LoggerAdapter. | Vinay Sajip | 2010-09-20 | 1 | -11/+15 |
| | | |||||
| * | Update the test_distutils mode test to test with umask value properly. | Senthil Kumaran | 2010-09-19 | 1 | -2/+7 |
| | | |||||
| * | Skip the distutils mode test on Windows OS. | Senthil Kumaran | 2010-09-18 | 1 | -0/+3 |
| | | |||||
| * | Fix Issue2236: Distutils' mkpath implementation ignoring the "mode" parameter | Senthil Kumaran | 2010-09-17 | 2 | -1/+8 |
| | | |||||
| * | get_build_version() is needed even where sys.platform != "win32". | Hirokazu Yamamoto | 2010-09-13 | 1 | -4/+8 |
| | | | | | Try to fix buildbot error in other way. | ||||
| * | Issue #9313: Use unittest.skipUnless to skip old MSVC. | Hirokazu Yamamoto | 2010-09-13 | 1 | -14/+5 |
| | | |||||
| * | Issue #9313: Skips test_remove_visual_c_ref on old MSVC. | Hirokazu Yamamoto | 2010-09-12 | 1 | -0/+5 |
| | | |||||
| * | Fix typo in option name | Éric Araujo | 2010-09-11 | 1 | -1/+1 |
| | | |||||
| * | Issue #941346: Improve the build process under AIX and allow Python to | Antoine Pitrou | 2010-09-10 | 1 | -0/+3 |
| | | | | | be built as a shared library. Patch by Sébastien Sablé. | ||||
| * | Follow-up to #9199: Fix str.join use, add newlines. | Éric Araujo | 2010-09-08 | 1 | -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 Araujo | 2010-09-07 | 1 | -1/+2 |
| | | |||||
| * | Fix eon-old bug in build_clib options (#1718574) | Éric Araujo | 2010-09-07 | 1 | -2/+2 |
| | | |||||
| * | Bump to 3.2a2. | Georg Brandl | 2010-09-05 | 1 | -1/+1 |
| | | |||||
| * | PEP 3149 is accepted. | Barry Warsaw | 2010-09-03 | 1 | -4/+3 |
| | | | | | http://mail.python.org/pipermail/python-dev/2010-September/103408.html | ||||
| * | remove pointless coding cookies | Florent Xicluna | 2010-08-30 | 2 | -2/+0 |
| | | |||||
| * | Use a marker in generated MANIFEST files, don't touch files without it. ↵ | Éric Araujo | 2010-08-14 | 2 | -4/+49 |
| | | | | | Fixes #8688. | ||||
| * | #7973: Fix distutils options spelling. | Georg Brandl | 2010-08-02 | 2 | -2/+2 |
| | | |||||
| * | #8292: Fix three instances of truth tests on return values of filter() ↵ | Georg Brandl | 2010-07-31 | 1 | -2/+1 |
| | | | | | (which is always true in Python 3). | ||||
| * | Bump versions and review NEWS file. | Georg Brandl | 2010-07-31 | 1 | -1/+1 |
| | | |||||
| * | Ensure that the Makefile variable expansion | Ronald Oussoren | 2010-07-23 | 2 | -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-22 | 63 | -1649/+1597 |
| | | | | | disutils2, and distutils is now feature-frozen. | ||||
| * | #6026: skip test_get_file_list when zlib is not available. | Ezio Melotti | 2010-07-12 | 1 | -0/+1 |
| | | |||||
| * | Merged revisions 82272 via svnmerge from | Ronald Oussoren | 2010-06-27 | 1 | -1/+3 |
| | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82272 | ronald.oussoren | 2010-06-27 14:36:16 +0200 (Sun, 27 Jun 2010) | 8 lines Two small fixes for the support for SDKs on MacOSX: 1) The code that checks if an path should be located in the SDK explicitly excludes /usr/local. This fixes issue9046 2) The SDK variant for filtering "db_dirs_to_check" in setup.py was not doing anything because of a missing assignment. ........ | ||||
| * | Merged revisions 82130 via svnmerge from | Benjamin Peterson | 2010-06-21 | 1 | -3/+12 |
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82130 | benjamin.peterson | 2010-06-21 10:27:46 -0500 (Mon, 21 Jun 2010) | 1 line fix finding visual studio 2008 on 64 bit #8854 ........ | ||||
| * | Fix for issue #8577: without this patch test_distutils | Ronald Oussoren | 2010-06-15 | 1 | -2/+3 |
| | | | | | | | will fail when builddir != srcdir (that is, when you run configure in a directory that is not the top of the source tree). | ||||
| * | Merged revisions 81662 via svnmerge from | Ronald Oussoren | 2010-06-03 | 1 | -1/+22 |
| | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81662 | ronald.oussoren | 2010-06-03 11:47:21 +0200 (Thu, 03 Jun 2010) | 9 lines Fix for issue #7724: ensure that distutils and python's own setup.py honor the MacOSX SDK when one is specified. This is needed to be able to build using the 10.4u SDK while running on OSX 10.6. This is a fixed version of the patch in r80963, I've tested this patch on OSX and Linux. ........ | ||||
| * | Oops, add the new test_log.py for distutils test suite (missing part of r81359) | Victor Stinner | 2010-05-19 | 1 | -0/+36 |
| | | |||||
| * | Issue #8663: distutils.log emulates backslashreplace error handler. Fix | Victor Stinner | 2010-05-19 | 1 | -0/+4 |
| | | | | | | compilation in a non-ASCII directory if stdout encoding is ASCII (eg. if stdout is not a TTY). | ||||
| * | Merged revisions 81261 via svnmerge from | Tarek Ziadé | 2010-05-17 | 1 | -1/+2 |
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81261 | tarek.ziade | 2010-05-17 12:54:43 +0200 (Mon, 17 May 2010) | 1 line upgraded distutils docs w.r.t. the manifest regeneration ........ | ||||
| * | Merged revisions 81255 via svnmerge from | Tarek Ziadé | 2010-05-17 | 2 | -57/+66 |
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81255 | tarek.ziade | 2010-05-17 12:06:20 +0200 (Mon, 17 May 2010) | 1 line Fixed #8688: Distutils now recalculates MANIFEST everytime. ........ | ||||
