Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix test_packaging on Windows (#12678). | Éric Araujo | 2011-08-24 | 2 | -4/+16 |
| | | | | See the distutils commit message for more detail. | ||||
* | Merge distutils bug fix from 3.2 | Éric Araujo | 2011-08-23 | 3 | -23/+30 |
|\ | |||||
| * | Fix distutils tests on Windows (#12678). | Éric Araujo | 2011-08-23 | 3 | -23/+30 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - First, support.fixup_build_ext (already used to set proper library_dirs value under Unix shared builds) gains the ability to correctly set the debug attribute under Windows debug builds. - Second, the filename for the extension module gets a _d suffix under debug builds. - Third, the test code properly puts our customized build_ext object into an internal dictionary to make sure that the install command will later use our object instead of re-creating one. That’s the downside of using low-level APIs in our test code: we have to manually push knobs and turn handles that would otherwise be handled behind the scenes. Thanks to Nadeem for the testing. | ||||
| * | Merge | Antoine Pitrou | 2011-08-23 | 2 | -6/+8 |
| |\ | |||||
* | \ | Branch merge | Éric Araujo | 2011-08-23 | 2 | -19/+18 |
|\ \ \ | |||||
| * | | | Try to fix packaging tests using build_ext on Windows (#12678) | Éric Araujo | 2011-08-23 | 2 | -19/+18 |
| | | | | |||||
* | | | | Merge | Antoine Pitrou | 2011-08-23 | 4 | -4/+86 |
|\ \ \ \ | |||||
| * \ \ \ | Issue #11657: Fix sending file descriptors over 255 over a multiprocessing Pipe. | Antoine Pitrou | 2011-08-23 | 4 | -4/+86 |
| |\ \ \ \ | | | |/ / | | |/| | | | | | | | Also added some tests. | ||||
| | * | | | Issue #11657: Fix sending file descriptors over 255 over a multiprocessing Pipe. | Antoine Pitrou | 2011-08-23 | 3 | -3/+86 |
| | | | | | | | | | | | | | | | | | | | | Also added some tests. | ||||
| | * | | | A warning doesn't equate a failed test | Antoine Pitrou | 2011-08-23 | 1 | -1/+0 |
| | | | | | | | | | | | | | | | | | | | | (this broken -F with e.g. test_multiprocessing) | ||||
* | | | | | Null merge. | Charles-François Natali | 2011-08-23 | 0 | -0/+0 |
|\ \ \ \ \ | |/ / / / |/| | | / | | |_|/ | |/| | | |||||
| * | | | Issue #12821: Fix test_fcntl failures on OpenBSD 5. | Charles-François Natali | 2011-08-23 | 2 | -6/+8 |
| |/ / | |||||
* | | | Remove the SSLSocket versions of sendmsg/recvmsg due to lack of proper tests ↵ | Nick Coghlan | 2011-08-23 | 2 | -40/+0 |
| | | | | | | | | | | | | and documentation in conjunction with lack of any known use cases (see issue #6560 for details) | ||||
* | | | Close #12826: fix socketmodule.c for OpenBSD, include sys/uio.h | Victor Stinner | 2011-08-23 | 2 | -0/+5 |
| |/ |/| | | | | | Patch written by Remi Pointel. | ||||
* | | #12191: added entry in What's New (+ small editing on shutil section) | Sandro Tosi | 2011-08-22 | 1 | -3/+6 |
| | | |||||
* | | #6484: refactor a bit the tests. | Ezio Melotti | 2011-08-22 | 1 | -52/+70 |
| | | |||||
* | | #12191: fix build failures, explicitly passing group argument when I want to ↵ | Sandro Tosi | 2011-08-22 | 1 | -2/+2 |
| | | | | | | | | test it | ||||
* | | Merge indentation fix and skip decorator with 3.2. | Ezio Melotti | 2011-08-22 | 1 | -24/+28 |
|\ \ | |/ | |||||
| * | Fix indentation and add a skip decorator. | Ezio Melotti | 2011-08-22 | 1 | -24/+28 |
| | | |||||
* | | #12191: add shutil.chown() to change user and/or group owner of a given path ↵ | Sandro Tosi | 2011-08-22 | 5 | -0/+110 |
| | | | | | | | | also specifying their names. | ||||
* | | #9200: merge with 3.2. | Ezio Melotti | 2011-08-22 | 3 | -42/+211 |
|\ \ | |/ | |||||
| * | #9200: The str.is* methods now work with strings that contain non-BMP ↵ | Ezio Melotti | 2011-08-22 | 3 | -42/+220 |
| | | | | | | | | characters even in narrow Unicode builds. | ||||
* | | #10542: Add 4 macros to work with surrogates: Py_UNICODE_IS_SURROGATE, ↵ | Ezio Melotti | 2011-08-22 | 3 | -0/+34 |
| | | | | | | | | Py_UNICODE_IS_HIGH_SURROGATE, Py_UNICODE_IS_LOW_SURROGATE, Py_UNICODE_JOIN_SURROGATES. | ||||
* | | Fix deprecation warnings in test_socket. | Nadeem Vawda | 2011-08-22 | 1 | -14/+14 |
| | | |||||
* | | Credit patch authors in NEWS for #6560 | Nick Coghlan | 2011-08-22 | 1 | -1/+1 |
| | | |||||
* | | Fix #12811 by closing files promptly in tabnanny.check. Patch by Anthony Briggs. | Nick Coghlan | 2011-08-22 | 3 | -0/+7 |
| | | |||||
* | | Add unit tests for the mailcap module. Patch by Gregory Nofi (closes #6484) | Nick Coghlan | 2011-08-22 | 3 | -0/+244 |
| | | |||||
* | | Attempt to address Windows buildbot failures | Nick Coghlan | 2011-08-22 | 1 | -1/+1 |
| | | |||||
* | | Add support for the send/recvmsg API to the socket module. Patch by David ↵ | Nick Coghlan | 2011-08-22 | 7 | -0/+3167 |
| | | | | | | | | Watson and Heiko Wundram. (Closes #6560) | ||||
* | | Null merge; fix already present in default branch. | Nadeem Vawda | 2011-08-21 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Issue #12678: Fix distutils sdist test on Windows. | Nadeem Vawda | 2011-08-21 | 2 | -0/+2 |
| | | | | | | | | Patch by Jeremy Kloth. | ||||
* | | Fix test_command_install_dist in shared Python builds | Éric Araujo | 2011-08-21 | 1 | -0/+1 |
| | | |||||
* | | Factor out the build_ext fixup for shared Python builds. | Éric Araujo | 2011-08-21 | 2 | -22/+29 |
| | | | | | | | | I need this to fix the failing test_command_install_dist. | ||||
* | | Remove obsolete code | Éric Araujo | 2011-08-21 | 1 | -2/+0 |
| | | |||||
* | | Merge build_ext fix from 3.2 | Éric Araujo | 2011-08-21 | 3 | -25/+34 |
|\ \ | |/ | |||||
| * | Fix distutils test_install for shared CPython builds | Éric Araujo | 2011-08-21 | 1 | -0/+1 |
| | | |||||
| * | Factor out the build_ext fixup for shared Python builds. | Éric Araujo | 2011-08-21 | 2 | -25/+33 |
| | | | | | | | | I need this to fix the failing test_install. | ||||
* | | Update README section on testing following issue #11651. | Nadeem Vawda | 2011-08-21 | 1 | -6/+4 |
| | | |||||
* | | Issue #12804: Prevent "make test" from using network resources. | Nadeem Vawda | 2011-08-21 | 1 | -1/+1 |
| | | |||||
* | | Merge 3.2 | Éric Araujo | 2011-08-21 | 1 | -1/+2 |
|\ \ | |/ | |||||
| * | Add missing name in shutil | Éric Araujo | 2011-08-21 | 1 | -1/+1 |
| | | |||||
* | | Merge 3.2 | Éric Araujo | 2011-08-21 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Add missing closing paren in docstring (thanks Ezio) | Éric Araujo | 2011-08-21 | 1 | -1/+1 |
| | | |||||
* | | Issue #12783: Fix test_posix failures on FreeBSD buildbots, due to | Charles-François Natali | 2011-08-21 | 1 | -2/+8 |
| | | | | | | | | | | sched_setparam() returning EINVAL for processes with SCHED_OTHER scheduling policy. | ||||
* | | Issue #12326: update sys.platform doc for Linux | Victor Stinner | 2011-08-21 | 1 | -7/+12 |
| | | |||||
* | | Issue #12326: refactor usage of sys.platform | Victor Stinner | 2011-08-20 | 8 | -20/+12 |
| | | | | | | | | | | | | | | | | * Use str.startswith(tuple): I didn't know this Python feature, Python rocks! * Replace sometimes sys.platform.startswith('linux') with sys.platform == 'linux' * sys.platform doesn't contain the major version on Cygwin on Mac OS X (it's just 'cygwin' and 'darwin') | ||||
* | | #5301: merge with 3.2 | Sandro Tosi | 2011-08-20 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | #5301: add image/vnd.microsoft.icon (.ico) MIME type | Sandro Tosi | 2011-08-20 | 1 | -0/+1 |
| | | |||||
* | | Issue #12326: woops, I really mean 'linux', not 'linux2' | Victor Stinner | 2011-08-20 | 2 | -2/+2 |
| | | | | | | | | Copy/paste (from Python 3.2) failure | ||||
* | | Close #12326: sys.platform is now always 'linux' on Linux | Victor Stinner | 2011-08-20 | 14 | -1085/+11 |
| | | | | | | | | | | | | On Linux, sys.platform doesn't contain the major version anymore. It is now always 'linux', instead of 'linux2' or 'linux3' depending on the Linux version used to build Python. |