summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* allow square brackets in cookie values (#22931)Benjamin Peterson2015-05-231-0/+14
|
* ensure .keywords is always a dictBenjamin Peterson2015-05-091-0/+2
|
* Issue #24125: Saved error's line and column numbers when an error is occuredSerhiy Storchaka2015-05-061-0/+2
| | | | during closing expatreader. Fixed a regression introduced in issue #23865.
* Issue #23713: Fixed fragility of test_imap_unordered_handle_iterable_exception.Serhiy Storchaka2015-04-231-2/+8
| | | | Patch by Davin Potts.
* Issue #16840: Skip bignum tests on minor releases where they are not supported.Serhiy Storchaka2015-04-221-1/+3
|
* Fixed full Tcl version parsing in tests for pre-final versions.Serhiy Storchaka2015-04-221-15/+11
|
* Issue #23728: Added a test for binascii.crc_hqx().Serhiy Storchaka2015-04-201-0/+8
|
* Issue #23842: os.major(), os.minor() and os.makedev() now support ints again.Serhiy Storchaka2015-04-201-0/+34
|
* Backported tests from issue #20175.Serhiy Storchaka2015-04-162-3/+23
|
* #17898: reset k and v so that the loop doesn't use an old valueAndrew Kuchling2015-04-141-0/+27
|
* Issue #16840: Fixed Tcl test on 2.7 with Tcl 8.4.19.Serhiy Storchaka2015-04-101-1/+2
| | | | In some Tcl versions -2147483648 is wide integer.
* ssue #23881: ftp://gatekeeper.research.compaq.com/ and ftp://ftp.debian.org/Victor Stinner2015-04-071-6/+4
| | | | | | | are down, don't use anymore in test_urllib2net ftp.kernel.org is also slow or down, so reuse the same FTP servers than Python 3.4 and 3.5: use ftp.debian.org instead.
* Issue #23458: Remove test_os.test_urandom_fd_non_inheritable()Victor Stinner2015-04-062-63/+0
| | | | | | | | | os.urandom() only tries to make the os.random() file descriptor non inheritable, but there is no guarantee. The test fails on too many operating systems: Windows, OS X 10.5, OpenIndiana. This issue is correctly fixed in Python 3.4 with the PEP 446. Upgrade to Python 3.4 is you need stronger guarantees.
* Issue #15133: _tkinter.tkapp.getboolean() now supports long and Tcl_Obj andSerhiy Storchaka2015-04-041-1/+6
| | | | | | always returns bool. tkinter.BooleanVar now validates input values (accepted bool, int, long, str, unicode, and Tcl_Obj). tkinter.BooleanVar.get() now always returns bool.
* Open files in binary mode to avoid newlines transformation.Serhiy Storchaka2015-04-041-2/+2
|
* Issue #10590: Added tests for xml.sax.parse() and xml.sax.parseString().Serhiy Storchaka2015-04-021-1/+108
|
* Issue #2175: Added tests for xml.sax.saxutils.prepare_input_source().Serhiy Storchaka2015-04-023-6/+61
| | | | Made test XML files non-ASCII.
* Issue #16840: Fixed test_tcl for Tcl < 8.5.Serhiy Storchaka2015-04-021-3/+3
|
* Issue #21526: Skip test_booleans on Tcl < 8.5.Serhiy Storchaka2015-04-021-0/+1
|
* Issue #16840: Tkinter now supports 64-bit integers added in Tcl 8.4 andSerhiy Storchaka2015-04-021-7/+42
| | | | arbitrary precision integers added in Tcl 8.5.
* Issue #21526: Fixed the test_booleans test for wantobjects = 0.Serhiy Storchaka2015-04-021-2/+6
|
* Issue #21526: Tkinter now supports new boolean type in Tcl 8.5.Serhiy Storchaka2015-04-021-0/+15
|
* replace 512 bit dh key with a 2014 bit one (closes #23844)Benjamin Peterson2015-04-023-10/+8
| | | | Patch by Cédric Krier.
* Issue #23838: linecache now clears the cache and returns an empty result onSerhiy Storchaka2015-04-011-0/+16
| | | | MemoryError.
* Issue #23799: Added test.test_support.start_threads() for running andSerhiy Storchaka2015-04-017-87/+82
| | | | cleaning up multiple threads.
* Issue #14904: Made test_unicode_repr_oflw to use less memory.Serhiy Storchaka2015-03-301-34/+43
| | | | Corrected memory requirements in other bigmem tests.
* Issue #22390: Fix test_gzip if unicode filename doesn't workVictor Stinner2015-03-301-1/+1
|
* Issue #22390: Fix test_gzip, remove temporary fileVictor Stinner2015-03-291-0/+1
|
* Issue #22390: Fix test_pdb to remove created bar.pyc fileVictor Stinner2015-03-291-0/+1
|
* Issue #22390: Fix test_aifc to remove the created fileVictor Stinner2015-03-291-2/+6
|
* Issue #22390: Fix typo in regrtest, support => test_supportVictor Stinner2015-03-291-3/+3
|
* Issue #22390: test.regrtest now emits a warning if temporary files orSerhiy Storchaka2015-03-291-1/+12
| | | | directories are left after running a test.
* Make some tests more frienly to MemoryError.Serhiy Storchaka2015-03-284-12/+28
| | | | Free memory, unlock hanging threads.
* Issue #23445: Fix test_gdb.python_is_optimized() for CFLAGS=-OgVictor Stinner2015-03-271-1/+1
| | | | -Og does not optimize the C code, it's just "fast debugging".
* Check that failed writerow() doesn't produce change a file.Serhiy Storchaka2015-03-251-13/+21
|
* Issue #23742: ntpath.expandvars() no longer loses unbalanced single quotes.Serhiy Storchaka2015-03-251-0/+1
|
* Issue #21802: The reader in BufferedRWPair now is closed even when closingSerhiy Storchaka2015-03-241-0/+45
| | | | writer failed in BufferedRWPair.close().
* Issue #23671: string.Template now allows to specify the "self" parameter asSerhiy Storchaka2015-03-242-0/+19
| | | | | keyword argument. string.Formatter now allows to specify the "self" and the "format_string" parameters as keyword arguments.
* Issue #21560: An attempt to write a data of wrong type no longer causeSerhiy Storchaka2015-03-231-0/+27
| | | | GzipFile corruption. Original patch by Wolfgang Maier.
* #23539: Set Content-Length to 0 for PUT, POST, and PATCH if body is None.R David Murray2015-03-221-15/+54
| | | | | | | Some http servers will reject PUT, POST, and PATCH requests if they do not have a Content-Length header. Patch by James Rutherford.
* Issue #23075: Whether __builtins__ is a module or a dict is undefined inSerhiy Storchaka2015-03-211-1/+2
| | | | | CPython. Use the reliably well defined `import __builtin__` instead. Patch by Alex Gaynor.
* Issue #23136: _strptime now uniformly handles all days in week 0, includingSerhiy Storchaka2015-03-191-0/+18
| | | | Jan 30 of previous year. Based on patch by Jim Carroll.
* Issue #23458: Skip test_urandom_fd_non_inheritable on OS X 10.4 sinceNed Deily2015-03-172-1/+31
| | | | FD_CLOEXEC is not supported there.
* Issue #22585, #23115: make URandomFDTests test case actually runNed Deily2015-03-171-0/+1
|
* Use non-zero and non-last positions in error handler tests.Serhiy Storchaka2015-03-161-16/+24
|
* Increased coverage of standard codec error handlers.Serhiy Storchaka2015-03-151-30/+42
|
* Issue #23138: Fixed parsing cookies with absent keys or values in cookiejar.Serhiy Storchaka2015-03-131-0/+23
| | | | Patch by Demian Brecht.
* Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() nowSerhiy Storchaka2015-03-131-0/+47
| | | | | handle exceptions raised by an iterator. Patch by Alon Diamant and Davin Potts.
* Issue #22928: Disabled HTTP header injections in httplib.Serhiy Storchaka2015-03-121-0/+56
| | | | Original patch by Demian Brecht.
* Issue #22853: Fixed a deadlock when use multiprocessing.Queue at import time.Serhiy Storchaka2015-03-061-0/+20
| | | | Patch by Florian Finkernagel and Davin Potts.