| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Remove unstable SSL tests in the absence of ssl.OP_NO_{SSLv2,SSLv3,TLSv1} | Antoine Pitrou | 2011-10-30 | 1 | -12/+2 |
| | | |||||
| * | bring is_integer into tested existence | Benjamin Peterson | 2011-10-28 | 1 | -0/+6 |
| | | |||||
| * | - Issue #13218: Fix test_ssl failures on Debian/Ubuntu. | Barry Warsaw | 2011-10-28 | 1 | -2/+4 |
| | | |||||
| * | adjust for change in assert bytecode | Benjamin Peterson | 2011-10-27 | 1 | -4/+5 |
| | | |||||
| * | add a test for an assertion with tuple msg | Benjamin Peterson | 2011-10-27 | 1 | -0/+6 |
| | | |||||
| * | Issue #10860: Skip the new test if HTTPS is not available | Petri Lehtinen | 2011-10-26 | 1 | -0/+1 |
| | | |||||
| * | Issue #10332: multiprocessing: fix a race condition when a Pool is closed | Charles-François Natali | 2011-10-24 | 1 | -0/+14 |
| | | | | | before all tasks have completed. | ||||
| * | Issue #1548891: The cStringIO.StringIO() constructor now encodes unicode | Antoine Pitrou | 2011-10-22 | 1 | -0/+21 |
| | | | | | | arguments with the system default encoding just like the write() method does, instead of converting it to a raw buffer. | ||||
| * | Oops, forgot issue number | Antoine Pitrou | 2011-10-21 | 1 | -1/+1 |
| | | |||||
| * | Add test for fix of issue #1730114. | Antoine Pitrou | 2011-10-21 | 1 | -0/+8 |
| | | |||||
| * | Fix closes Issue6090 - Raise a ValueError, instead of failing with unrelated | Senthil Kumaran | 2011-10-19 | 1 | -0/+10 |
| | | | | | | exceptions, when a document with timestamp earlier than 1980 is provided to zipfile. Patch contributed by Petri Lehtinen. | ||||
| * | Fix closes Issue12529 - cgi.parse_header failure on double quotes and | Senthil Kumaran | 2011-10-19 | 1 | -0/+3 |
| | | | | | semicolons. Patch by Ben Darnell and Petri Lehtinen. | ||||
| * | Remove duplication. | Ezio Melotti | 2011-10-19 | 2 | -3/+3 |
| | | |||||
| * | Fixes #10860: Handle empty port after port delimiter in httplib | Łukasz Langa | 2011-10-18 | 1 | -1/+24 |
| | | | | | | | Thanks, Shawn Ligocki! 3.x version will come as a separate patch. | ||||
| * | PyEval_CallObject requires a tuple of args (closes #13186) | Benjamin Peterson | 2011-10-15 | 1 | -0/+13 |
| | | |||||
| * | Branch merge | Éric Araujo | 2011-10-09 | 1 | -5/+8 |
| |\ | |||||
| | * | Fix test_sysconfig when prefix != exec-prefix (#9100). | Éric Araujo | 2011-10-08 | 1 | -5/+8 |
| | | | | | | | | | Reported by Zsolt Cserna. | ||||
| * | | Issue #7367: Ensure test directory always gets removed. | Ned Deily | 2011-10-07 | 1 | -2/+2 |
| |/ | |||||
| * | Issue #7367: Add test case to test_pkgutil for walking path with | Ned Deily | 2011-10-06 | 1 | -0/+11 |
| | | | | | an unreadable directory. | ||||
| * | Issue #7425: Refactor test_pydoc test case for '-k' behavior and add | Ned Deily | 2011-10-06 | 1 | -49/+63 |
| | | | | | new test cases for importing bad packages and unreadable packages dirs. | ||||
| * | Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle | Charles-François Natali | 2011-10-06 | 1 | -0/+15 |
| | | | | | | would be finalized after the reference to its underlying BufferedRWPair's writer got cleared by the GC. | ||||
| * | Branch merge | Éric Araujo | 2011-10-06 | 1 | -1/+1 |
| |\ | |||||
| | * | Fix typo and case in a recently added test | Éric Araujo | 2011-10-05 | 1 | -1/+1 |
| | | | |||||
| * | | Enable the only tests for sys.gettrace | Amaury Forgeot d'Arc | 2011-10-05 | 1 | -2/+2 |
| |/ | |||||
| * | Avoid testing stuff that's been fixed in 2.7 on older Pythons | Antoine Pitrou | 2011-10-04 | 1 | -0/+4 |
| | | |||||
| * | Issue #7689: Allow pickling of dynamically created classes when their | Antoine Pitrou | 2011-10-04 | 1 | -0/+21 |
| | | | | | | metaclass is registered with copyreg. Patch by Nicolas M. Thiéry and Craig Citro. | ||||
| * | #4147: minidom's toprettyxml no longer adds whitespace to text nodes. | R David Murray | 2011-10-01 | 1 | -0/+7 |
| | | | | | Patch by Dan Kenigsberg. | ||||
| * | Issue #13034: When decoding some SSL certificates, the subjectAltName ↵ | Antoine Pitrou | 2011-10-01 | 2 | -2/+53 |
| | | | | | extension could be unreported. | ||||
| * | Issue #7732: Fix a crash on importing a module if a directory has the same name | Victor Stinner | 2011-09-23 | 1 | -0/+8 |
| | | | | | | | | | than a Python module (e.g. "__init__.py"): don't close the file twice. PyFile_FromFile() does also close the file if PyString_FromString() failed. It did already close the file on fill_file_fields() error (e.g. if the file is a directory). | ||||
| * | Issue #12931: xmlrpclib now encodes Unicode URI to ISO-8859-1, instead of | Victor Stinner | 2011-09-22 | 1 | -0/+3 |
| | | | | | failing with a UnicodeDecodeError. | ||||
| * | Fix a race condition in test_socket.ThreadableTest: the client is reported | Charles-François Natali | 2011-09-21 | 1 | -1/+1 |
| | | | | | ready before having been set up. | ||||
| * | Issue #12981: test_multiprocessing: catch ImportError when importing | Charles-François Natali | 2011-09-21 | 1 | -2/+13 |
| | | | | | | multiprocessing.reduction, which may not be available (e.g. if the OS doesn't support FD passing over Unix domain sockets). | ||||
| * | Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor ↵ | Jesus Cea | 2011-09-21 | 1 | -0/+17 |
| | | | | | was actually received | ||||
| * | Port the fix for Issue12924 (missing quote_plus) to 2.7 branch. | Senthil Kumaran | 2011-09-12 | 1 | -0/+1 |
| | | |||||
| * | Fix issue #12948: multiprocessing test failures can hang the buildbots | Jesus Cea | 2011-09-09 | 1 | -2/+0 |
| | | |||||
| * | Close issue #12948: multiprocessing test failures can hang the buildbots | Jesus Cea | 2011-09-09 | 1 | -3/+27 |
| | | |||||
| * | Fix test_sysconfig when run from a Python installed under /site (#10086). | Éric Araujo | 2011-08-31 | 1 | -2/+2 |
| | | | | | Patch by Hallvard B Furuseth. | ||||
| * | Issue #12786: Set communication pipes used by subprocess.Popen CLOEXEC to avoid | Charles-François Natali | 2011-08-25 | 1 | -0/+31 |
| | | | | | them being inherited by other subprocesses. | ||||
| * | Issue #11657: Fix sending file descriptors over 255 over a multiprocessing Pipe. | Antoine Pitrou | 2011-08-23 | 1 | -1/+82 |
| | | | | | Also added some tests. | ||||
| * | Issue #12821: Fix test_fcntl failures on OpenBSD 5. | Charles-François Natali | 2011-08-23 | 1 | -6/+2 |
| | | |||||
| * | #9200: backport tests but run them on wide builds only. | Ezio Melotti | 2011-08-22 | 1 | -2/+185 |
| | | |||||
| * | Issue #12213: Fix a buffering bug with interleaved reads and writes that | Antoine Pitrou | 2011-08-20 | 1 | -2/+43 |
| | | | | | could appear on io.BufferedRandom streams. | ||||
| * | Branch merge | Éric Araujo | 2011-08-19 | 1 | -0/+4 |
| |\ | |||||
| | * | Guard shutil._make_archive against a logger=None argument. | Éric Araujo | 2011-08-19 | 1 | -0/+4 |
| | | | | | | | | | | | Backporting two lines from the 3.x tests was enough to trigger the bug. I also took the opportunity of making the logging call lazy. | ||||
| * | | Fix resource leaks in test_subprocess. | Nadeem Vawda | 2011-08-19 | 1 | -0/+4 |
| | | | |||||
| * | | Issue #12650: fix failures on some buildbots, when a subprocess takes a long | Charles-François Natali | 2011-08-18 | 1 | -12/+0 |
| |/ | | | | time to spawn. | ||||
| * | Issue #12650: only run the tests on Unix. | Charles-François Natali | 2011-08-18 | 1 | -58/+58 |
| | | |||||
| * | Issue #12650: Fix a race condition where a subprocess.Popen could leak | Charles-François Natali | 2011-08-18 | 1 | -0/+57 |
| | | | | | resources (FD/zombie) when killed at the wrong time. | ||||
| * | The simplest possible fix for the regression in bug 12752 by encoding unicodes | Barry Warsaw | 2011-08-15 | 1 | -0/+5 |
| | | | | | to 8-bit strings. | ||||
| * | #12266: move the tests in test_unicode. | Ezio Melotti | 2011-08-15 | 2 | -17/+19 |
| | | |||||
