summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Print all fields when calling “pysetup metadata” without options.Éric Araujo2011-08-291-11/+7
| | | | | | When called without option (“-f field” or “--all”), “pysetup metadata” didn’t do anything useful. Now it prints out all metadata fields. The “--all” option is removed.
* Cleanup: use sys.version_info instead of convoluted hexversion lshiftsÉric Araujo2011-08-291-11/+6
|
* Make tests faster by reaping threads only at the endAntoine Pitrou2011-08-271-4/+1
|\
| * Make tests faster by reaping threads only at the endAntoine Pitrou2011-08-271-4/+1
| |
* | Provide a better diagnosis on socket errorsAntoine Pitrou2011-08-271-2/+4
|\ \ | |/
| * Provide a better diagnosis on socket errorsAntoine Pitrou2011-08-271-2/+4
| |
* | Fix #9923: mailcap now uses the OS path separator for the MAILCAP envvar. ↵Nick Coghlan2011-08-271-3/+3
| | | | | | | | Not backported, since it could break cases where people worked around the old POSIX-specific behaviour on non-POSIX platforms.
* | Fix #12835: prevent use of the unencrypted sendmsg/recvmsg APIs on SSL ↵Nick Coghlan2011-08-272-0/+22
| | | | | | | | wrapped sockets (Patch by David Watson)
* | Merge: Make regrtest complain when -M and -j are used together.Nadeem Vawda2011-08-271-0/+2
|\ \ | |/ | | | | | | | | | | -j doesn't pass the memlimit on to child processes, so this doesn't work at present, and even if it did, running multiple bigmem tests at once would usually not be desirable (since you generally want to devote as much of the available RAM as possible to each test).
| * Make regrtest complain when -M and -j are used together.Nadeem Vawda2011-08-271-0/+2
| | | | | | | | | | | | | | -j doesn't pass the memlimit on to child processes, so this doesn't work at present, and even if it did, running multiple bigmem tests at once would usually not be desirable (since you generally want to devote as much of the available RAM as possible to each test).
| * Branch mergeÉric Araujo2011-08-261-0/+4
| |\
* | \ Branch mergeÉric Araujo2011-08-262-6/+4
|\ \ \
| * \ \ Merge from 3.2 (#9302 fix and other changes)Éric Araujo2011-08-251-3/+2
| |\ \ \ | | |/ /
| | * | Turn two ifs into one in the code I commited a few days agoÉric Araujo2011-08-251-3/+2
| | | |
| * | | Minor code simplificationÉric Araujo2011-08-251-3/+2
| | | |
* | | | Issue #12333: fix test_distutils failures under Solaris and derivativesAntoine Pitrou2011-08-251-0/+4
|\ \ \ \ | |/ / / |/| | / | | |/ | |/|
| * | Issue #12333: fix test_distutils failures under Solaris and derivativesAntoine Pitrou2011-08-251-0/+4
| |/
* | Another (hopefully last) fix for test_packaging on Windws (#12678)Éric Araujo2011-08-251-3/+13
| |
* | Followup to cdc6c1b072a5: I forgot to "hg add" the test filesAntoine Pitrou2011-08-252-0/+51
| |
* | Issue #12803: SSLContext.load_cert_chain() now accepts a password argumentAntoine Pitrou2011-08-251-0/+57
| | | | | | | | to be used if the private key is encrypted. Patch by Adam Simpkins.
* | Issue #12656: Really fix test_asyncore failures on Windows buildbots...Charles-François Natali2011-08-241-1/+2
| |
* | Issue #12656: Fix test_asyncore failures on Windows buildbots.Charles-François Natali2011-08-241-5/+7
| |
* | Issue #12656: Add tests for IPv6 and Unix sockets to test_asyncore.Charles-François Natali2011-08-241-46/+85
| |
* | Fix test_packaging on Windows (#12678).Éric Araujo2011-08-242-4/+16
| | | | | | | | See the distutils commit message for more detail.
* | Merge distutils bug fix from 3.2Éric Araujo2011-08-233-23/+30
|\ \ | |/
| * Fix distutils tests on Windows (#12678).Éric Araujo2011-08-233-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.
| * MergeAntoine Pitrou2011-08-231-6/+2
| |\
| | * Issue #12821: Fix test_fcntl failures on OpenBSD 5.Charles-François Natali2011-08-231-6/+2
| | |
* | | Branch mergeÉric Araujo2011-08-232-19/+18
|\ \ \
| * | | Try to fix packaging tests using build_ext on Windows (#12678)Éric Araujo2011-08-232-19/+18
| | | |
* | | | Issue #11657: Fix sending file descriptors over 255 over a multiprocessing Pipe.Antoine Pitrou2011-08-232-2/+81
|\ \ \ \ | | |/ / | |/| | | | | | Also added some tests.
| * | | Issue #11657: Fix sending file descriptors over 255 over a multiprocessing Pipe.Antoine Pitrou2011-08-231-1/+81
| | | | | | | | | | | | | | | | Also added some tests.
| * | | A warning doesn't equate a failed testAntoine Pitrou2011-08-231-1/+0
| | |/ | |/| | | | | | | (this broken -F with e.g. test_multiprocessing)
* | | Remove the SSLSocket versions of sendmsg/recvmsg due to lack of proper tests ↵Nick Coghlan2011-08-232-40/+0
| |/ |/| | | | | and documentation in conjunction with lack of any known use cases (see issue #6560 for details)
* | #6484: refactor a bit the tests.Ezio Melotti2011-08-221-52/+70
| |
* | #12191: fix build failures, explicitly passing group argument when I want to ↵Sandro Tosi2011-08-221-2/+2
| | | | | | | | test it
* | Merge indentation fix and skip decorator with 3.2.Ezio Melotti2011-08-221-24/+28
|\ \ | |/
| * Fix indentation and add a skip decorator.Ezio Melotti2011-08-221-24/+28
| |
* | #12191: add shutil.chown() to change user and/or group owner of a given path ↵Sandro Tosi2011-08-222-0/+90
| | | | | | | | also specifying their names.
* | #9200: merge with 3.2.Ezio Melotti2011-08-221-1/+157
|\ \ | |/
| * #9200: The str.is* methods now work with strings that contain non-BMP ↵Ezio Melotti2011-08-221-1/+157
| | | | | | | | characters even in narrow Unicode builds.
| * Issue #12678: Fix distutils sdist test on Windows.Nadeem Vawda2011-08-211-0/+1
| | | | | | | | Patch by Jeremy Kloth.
* | Fix deprecation warnings in test_socket.Nadeem Vawda2011-08-221-14/+14
| |
* | Fix #12811 by closing files promptly in tabnanny.check. Patch by Anthony Briggs.Nick Coghlan2011-08-221-0/+3
| |
* | Add unit tests for the mailcap module. Patch by Gregory Nofi (closes #6484)Nick Coghlan2011-08-222-0/+242
| |
* | Add support for the send/recvmsg API to the socket module. Patch by David ↵Nick Coghlan2011-08-223-0/+2160
| | | | | | | | Watson and Heiko Wundram. (Closes #6560)
* | Fix test_command_install_dist in shared Python buildsÉric Araujo2011-08-211-0/+1
| |
* | Factor out the build_ext fixup for shared Python builds.Éric Araujo2011-08-212-22/+29
| | | | | | | | I need this to fix the failing test_command_install_dist.
* | Remove obsolete codeÉric Araujo2011-08-211-2/+0
| |
* | Merge build_ext fix from 3.2Éric Araujo2011-08-213-25/+34
|\ \ | |/