summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* Issue #13087: BufferedReader.seek() now always raises UnsupportedOperationAntoine Pitrou2011-10-041-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 Pitrou2011-10-046-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 theirAntoine Pitrou2011-10-041-0/+21
| | | | | metaclass is registered with copyreg. Patch by Nicolas M. Thiéry and Craig Citro.
* Fix ResourceWarnings in the TIPC socket tests.Antoine Pitrou2011-10-021-2/+7
|
* #4147: minidom's toprettyxml no longer adds whitespace to text nodes.R David Murray2011-10-011-0/+7
| | | | Patch by Dan Kenigsberg.
* Issue #13034: When decoding some SSL certificates, the subjectAltName ↵Antoine Pitrou2011-10-012-0/+57
| | | | extension could be unreported.
* Issue #7732: Don't open a directory as a file anymore while importing aVictor Stinner2011-09-231-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_xmlrpcVictor Stinner2011-09-221-0/+4
|
* Fix a race condition in test_socket.ThreadableTest: the client is reported asCharles-François Natali2011-09-211-1/+1
| | | | ready before having been set up.
* Issue #12981: test_multiprocessing: catch ImportError when importingCharles-François Natali2011-09-211-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 Cea2011-09-211-0/+17
| | | | was actually received
* test_multiprocessing removes temporary filesVictor Stinner2011-09-201-0/+2
|
* test_httplib removes temporary filesVictor Stinner2011-09-201-0/+2
|
* Add the quote_plus call in the test.Senthil Kumaran2011-09-121-0/+1
|
* Fix issue #12948: multiprocessing test failures can hang the buildbotsJesus Cea2011-09-091-2/+0
|
* Close issue #12948: multiprocessing test failures can hang the buildbotsJesus Cea2011-09-091-3/+27
|
* #12888: Fix a bug in HTMLParser.unescape that prevented it to escape more ↵Ezio Melotti2011-09-051-1/+2
| | | | than 128 entities. Patch by Peter Otten.
* add a __dict__ descr for IOBase (closes #12878)Benjamin Peterson2011-09-031-0/+11
|
* Issue #12802: the Windows error ERROR_DIRECTORY (numbered 267) is nowAntoine Pitrou2011-09-011-0/+8
| | | | mapped to POSIX errno ENOTDIR (previously EINVAL).
* Fix test_sysconfig when run from a Python installed under /site (#10086).Éric Araujo2011-08-311-2/+2
| | | | Patch by Hallvard B Furuseth.
* Try to fix one of the bigmem tests in test_pickleAntoine Pitrou2011-08-301-0/+5
|
* Issue #12847: Fix a crash with negative PUT and LONG_BINPUT arguments inAntoine Pitrou2011-08-291-0/+12
| | | | the C pickle implementation.
* Issue #11564: Avoid crashes when trying to pickle huge objects or containersAntoine Pitrou2011-08-293-9/+111
| | | | (more than 2**31 items). Instead, in most cases, an OverflowError is raised.
* Make tests faster by reaping threads only at the endAntoine Pitrou2011-08-271-4/+1
|
* 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).
* MergeAntoine Pitrou2011-08-231-6/+2
|\
| * Issue #12821: Fix test_fcntl failures on OpenBSD 5.Charles-François Natali2011-08-231-6/+2
| |
* | 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)
* Fix indentation and add a skip decorator.Ezio Melotti2011-08-221-24/+28
|
* #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 #12213: Fix a buffering bug with interleaved reads and writes thatAntoine Pitrou2011-08-201-2/+42
| | | | could appear on BufferedRandom streams.
* Issue #12791: Break reference cycles early when a generator exits with an ↵Antoine Pitrou2011-08-201-0/+62
| | | | exception.
* Fix typo in test namesAntoine Pitrou2011-08-191-4/+4
|
* Fix ResourceWarnings in test_subprocess.Nadeem Vawda2011-08-191-0/+4
|
* Issue #12650: fix failures on some buildbots, when a subprocess takes a longCharles-François Natali2011-08-181-12/+0
| | | | time to spawn.
* Issue #12650: Fix a race condition where a subprocess.Popen could leakCharles-François Natali2011-08-181-0/+58
| | | | resources (FD/zombie) when killed at the wrong time.
* #12266: Fix str.capitalize() to correctly uppercase/lowercase titlecased and ↵Ezio Melotti2011-08-151-0/+17
| | | | cased non-letter characters.
* Fix #11513: wrong exception handling for the case that GzipFile itself ↵Georg Brandl2011-08-131-0/+8
| | | | raises an IOError.
* tokenize is just broken on test_pep3131.pyBenjamin Peterson2011-08-131-0/+3
|
* normalization is different between unicode builds, so use a new non-BMP char ↵Benjamin Peterson2011-08-131-3/+12
| | | | and add normalization test
* in narrow builds, make sure to test codepoints as identifier characters ↵Benjamin Peterson2011-08-132-0/+4
| | | | | | (closes #12732) This fixes the use of Unicode identifiers outside the BMP in narrow builds.
* Branch mergeÉric Araujo2011-08-121-1/+2
|\
| * Test pipes.quote with a few non-ASCII characters (see #9723).Éric Araujo2011-08-091-1/+2
| | | | | | | | | | | | | | That pipes.quote thinks all non-ASCII characters need to be quoted may be a bug, but right now I’m committing this test to make sure I haven’t introduced a behavior change in 3.3 when I simplified the code to use a regex (in 5966eeb0457d).
* | Issue #12687: Fix a possible buffering bug when unpickling text mode ↵Antoine Pitrou2011-08-111-0/+13
| | | | | | | | (protocol 0, mostly) pickles.
* | Fix closes Issue10087 - fixing the output of calendar display in the html ↵Senthil Kumaran2011-08-111-0/+7
|/ | | | format. Patch by Chris Lambacher. Test Contributed by catherine.
* Fix closes issue12698 - make the no_proxy environment variable handling a ↵Senthil Kumaran2011-08-061-1/+3
| | | | bit lenient (accomodate spaces in between the items)
* change the redundant svn scheme urljoin test case to svn+ssh scheme.Senthil Kumaran2011-08-031-1/+1
|
* Fix closes issue12683 - urljoin to work with relative join of svn scheme.Senthil Kumaran2011-08-031-0/+2
|
* Fix closes Issue12676 - Invalid identifier used in TypeError message in ↵Senthil Kumaran2011-08-021-0/+7
| | | | | | http.client. Reported by Popa Claudiu and Patch by Santoso Wijaya.