Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 | -42/+53 |
| | | | | new test cases for importing bad packages and unreadable packages dirs. | ||||
* | Issue #12911: Fix memory consumption when calculating the repr() of huge ↵ | Antoine Pitrou | 2011-10-06 | 2 | -0/+21 |
| | | | | | | | tuples or lists. This introduces a small private API for this common pattern. The issue has been discovered thanks to Martin's huge-mem buildbot. | ||||
* | Branch merge | Éric Araujo | 2011-10-06 | 1 | -1/+1 |
|\ | |||||
| * | Fix typo and case in a recently added test | Éric Araujo | 2011-10-04 | 1 | -1/+1 |
| | | |||||
* | | Enable the only tests for sys.gettrace | Amaury Forgeot d'Arc | 2011-10-05 | 1 | -2/+2 |
| | | |||||
* | | Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle | Charles-François Natali | 2011-10-05 | 1 | -0/+15 |
| | | | | | | | | | | would be finalized after the reference to its underlying BufferedRWPair's writer got cleared by the GC. | ||||
* | | Issue13104 - Fix urllib.request.thishost() utility function. | Senthil Kumaran | 2011-10-05 | 1 | -0/+4 |
| | | |||||
* | | os.geteuid() may not be available... | Charles-François Natali | 2011-10-04 | 1 | -1/+1 |
| | | |||||
* | | Issue #11956: Always skip test_import.test_unwritable_directory when run as | Charles-François Natali | 2011-10-04 | 1 | -2/+2 |
| | | | | | | | | root, since the semantics varies across Unix variants. | ||||
* | | Issue #11956: Skip test_import.test_unwritable_directory on FreeBSD when run as | Charles-François Natali | 2011-10-04 | 1 | -0/+3 |
|/ | | | | root (directory permissions are ignored). | ||||
* | Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation | Antoine Pitrou | 2011-10-04 | 1 | -0/+8 |
| | | | | | if the underlying raw stream is unseekable, even if the seek could be satisfied using the internal buffer. Patch by John O'Connor. | ||||
* | Start fixing test_bigmem: | Antoine Pitrou | 2011-10-04 | 6 | -164/+203 |
| | | | | | - bigmemtest is replaced by precisionbigmemtest - add a poor man's watchdog thread to print memory consumption | ||||
* | 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. | ||||
* | Fix ResourceWarnings in the TIPC socket tests. | Antoine Pitrou | 2011-10-02 | 1 | -2/+7 |
| | |||||
* | #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 | -0/+57 |
| | | | | extension could be unreported. | ||||
* | Issue #7732: Don't open a directory as a file anymore while importing a | Victor Stinner | 2011-09-23 | 1 | -0/+9 |
| | | | | | module. Ignore the direcotry if its name matchs the module name (e.g. "__init__.py") and raise a ImportError instead. | ||||
* | Issue #12931: Add a test with Unicode URI to test_xmlrpc | Victor Stinner | 2011-09-22 | 1 | -0/+4 |
| | |||||
* | Fix a race condition in test_socket.ThreadableTest: the client is reported as | 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 | ||||
* | test_multiprocessing removes temporary files | Victor Stinner | 2011-09-20 | 1 | -0/+2 |
| | |||||
* | test_httplib removes temporary files | Victor Stinner | 2011-09-20 | 1 | -0/+2 |
| | |||||
* | Add the quote_plus call in the test. | 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 |
| | |||||
* | #12888: Fix a bug in HTMLParser.unescape that prevented it to escape more ↵ | Ezio Melotti | 2011-09-05 | 1 | -1/+2 |
| | | | | than 128 entities. Patch by Peter Otten. | ||||
* | add a __dict__ descr for IOBase (closes #12878) | Benjamin Peterson | 2011-09-03 | 1 | -0/+11 |
| | |||||
* | Issue #12802: the Windows error ERROR_DIRECTORY (numbered 267) is now | Antoine Pitrou | 2011-09-01 | 1 | -0/+8 |
| | | | | mapped to POSIX errno ENOTDIR (previously EINVAL). | ||||
* | 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. | ||||
* | Try to fix one of the bigmem tests in test_pickle | Antoine Pitrou | 2011-08-30 | 1 | -0/+5 |
| | |||||
* | Issue #12847: Fix a crash with negative PUT and LONG_BINPUT arguments in | Antoine Pitrou | 2011-08-29 | 1 | -0/+12 |
| | | | | the C pickle implementation. | ||||
* | Issue #11564: Avoid crashes when trying to pickle huge objects or containers | Antoine Pitrou | 2011-08-29 | 3 | -9/+111 |
| | | | | (more than 2**31 items). Instead, in most cases, an OverflowError is raised. | ||||
* | Make tests faster by reaping threads only at the end | Antoine Pitrou | 2011-08-27 | 1 | -4/+1 |
| | |||||
* | Make regrtest complain when -M and -j are used together. | Nadeem Vawda | 2011-08-27 | 1 | -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). | ||||
* | Merge | Antoine Pitrou | 2011-08-23 | 1 | -6/+2 |
|\ | |||||
| * | Issue #12821: Fix test_fcntl failures on OpenBSD 5. | Charles-François Natali | 2011-08-23 | 1 | -6/+2 |
| | | |||||
* | | Issue #11657: Fix sending file descriptors over 255 over a multiprocessing Pipe. | Antoine Pitrou | 2011-08-23 | 1 | -1/+81 |
| | | | | | | | | 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) | ||||
* | Fix indentation and add a skip decorator. | Ezio Melotti | 2011-08-22 | 1 | -24/+28 |
| | |||||
* | #9200: The str.is* methods now work with strings that contain non-BMP ↵ | Ezio Melotti | 2011-08-22 | 1 | -1/+157 |
| | | | | characters even in narrow Unicode builds. | ||||
* | Issue #12213: Fix a buffering bug with interleaved reads and writes that | Antoine Pitrou | 2011-08-20 | 1 | -2/+42 |
| | | | | could appear on BufferedRandom streams. | ||||
* | Issue #12791: Break reference cycles early when a generator exits with an ↵ | Antoine Pitrou | 2011-08-20 | 1 | -0/+62 |
| | | | | exception. | ||||
* | Fix typo in test names | Antoine Pitrou | 2011-08-19 | 1 | -4/+4 |
| | |||||
* | Fix ResourceWarnings 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: Fix a race condition where a subprocess.Popen could leak | Charles-François Natali | 2011-08-18 | 1 | -0/+58 |
| | | | | resources (FD/zombie) when killed at the wrong time. | ||||
* | #12266: Fix str.capitalize() to correctly uppercase/lowercase titlecased and ↵ | Ezio Melotti | 2011-08-15 | 1 | -0/+17 |
| | | | | cased non-letter characters. | ||||
* | Fix #11513: wrong exception handling for the case that GzipFile itself ↵ | Georg Brandl | 2011-08-13 | 1 | -0/+8 |
| | | | | raises an IOError. |