summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
...
| * Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() nowSerhiy Storchaka2015-03-131-0/+46
| | | | | | | | | | handle exceptions raised by an iterator. Patch by Alon Diamant and Davin Potts.
* | Issue #23641: Cleaned out legacy dunder names from tests and docs.Serhiy Storchaka2015-03-1210-90/+61
|\ \ | |/ | | | | | | Fixed 2 to 3 porting bug in pynche.ColorDB. Added few tests for __truediv__, __floordiv__ and __matmul__.
| * Issue #23641: Cleaned out legacy dunder names from tests and docs.Serhiy Storchaka2015-03-1210-90/+50
| | | | | | | | Fixed 2 to 3 porting bug in pynche.ColorDB.
* | Issue #20617: Remove unused import in test_ssl.Berker Peksag2015-03-121-1/+0
|\ \ | |/ | | | | Patch by Mark Lawrence.
| * Issue #20617: Remove unused import in test_ssl.Berker Peksag2015-03-121-1/+0
| | | | | | | | Patch by Mark Lawrence.
* | Issue #23566: enable(), register(), dump_traceback() and dump_traceback_later()Victor Stinner2015-03-121-57/+101
| | | | | | | | functions of faulthandler now accept file descriptors. Patch by Wei Wu.
* | Merge 3.4 (test_os)Victor Stinner2015-03-121-37/+70
|\ \ | |/
| * Issue #23605: Refactor os.walk() tests to also run them on os.fwalk()Victor Stinner2015-03-121-37/+70
| |
* | Issue #22928: Disabled HTTP header injections in http.client.Serhiy Storchaka2015-03-121-0/+57
|\ \ | |/ | | | | Original patch by Demian Brecht.
| * Issue #22928: Disabled HTTP header injections in http.client.Serhiy Storchaka2015-03-121-0/+57
| | | | | | | | Original patch by Demian Brecht.
* | Issue #23192: Fixed generator lambdas. Patch by Bruno Cauet.Serhiy Storchaka2015-03-111-0/+20
|\ \ | |/
| * Issue #23192: Fixed generator lambdas. Patch by Bruno Cauet.Serhiy Storchaka2015-03-111-0/+20
| |
* | Close issue23467: add %r compatibility to bytes and bytearrayEthan Furman2015-03-111-0/+5
| |
* | Issue #23629: Fix the default __sizeof__ implementation for variable-sized ↵Antoine Pitrou2015-03-102-2/+18
|\ \ | |/ | | | | objects.
| * Issue #23629: Fix the default __sizeof__ implementation for variable-sized ↵Antoine Pitrou2015-03-102-2/+18
| | | | | | | | objects.
* | merge 3.4Benjamin Peterson2015-03-091-5/+8
|\ \ | |/
| * fix up import styleBenjamin Peterson2015-03-091-5/+8
| |
* | Issue #22980: Under Linux, C extensions now include bitness in the file name,Antoine Pitrou2015-03-081-0/+6
| | | | | | | | to make it easy to test 32-bit and 64-bit builds in the same working tree.
* | Issue #21619: Cleaned up test_broken_pipe_cleanup.Serhiy Storchaka2015-03-081-10/+8
|\ \ | |/ | | | | Patch by Martin Panter.
| * Issue #21619: Cleaned up test_broken_pipe_cleanup.Serhiy Storchaka2015-03-081-10/+8
| | | | | | | | Patch by Martin Panter.
* | Suppress assert dialogs in test_osSteve Dower2015-03-081-10/+14
| |
* | Suppress assert dialogs in test_cmd_line.Steve Dower2015-03-081-1/+2
| |
* | Issue #22524: New os.scandir() function, part of the PEP 471: "os.scandir()Victor Stinner2015-03-081-0/+224
| | | | | | | | | | function -- a better and faster directory iterator". Patch written by Ben Hoyt.
* | Issue #20876: correctly close temporary file in ↵Antoine Pitrou2015-03-071-10/+9
|\ \ | |/ | | | | test.support.fs_is_case_insensitive()
| * Issue #20876: correctly close temporary file in ↵Antoine Pitrou2015-03-071-10/+9
| | | | | | | | test.support.fs_is_case_insensitive()
* | Issue #23103: Reduced the memory consumption of IPv4Address and IPv6Address.Serhiy Storchaka2015-03-071-0/+7
| |
* | Issue #21793: BaseHTTPRequestHandler again logs response code as numeric,Serhiy Storchaka2015-03-071-48/+92
| | | | | | | | not as stringified enum. Patch by Demian Brecht.
* | Issue #22853: Added regression test for using multiprocessing.Queue at importSerhiy Storchaka2015-03-061-0/+21
|\ \ | |/ | | | | time. Patch by Davin Potts.
| * Issue #22853: Added regression test for using multiprocessing.Queue at importSerhiy Storchaka2015-03-061-0/+21
| | | | | | | | time. Patch by Davin Potts.
* | merge 3.4Benjamin Peterson2015-03-061-5/+0
|\ \ | |/
| * remove redundant testBenjamin Peterson2015-03-061-5/+0
| |
* | merge 3.4 (#23590)Benjamin Peterson2015-03-061-0/+6
|\ \ | |/
| * fix potential refleak in PyFloat_AsDouble (closes #23590)Benjamin Peterson2015-03-061-0/+6
| |
* | Issue #22936: Make it possible to show local variables in tracebacks.Robert Collins2015-03-051-8/+60
| |
* | merge 3.4Benjamin Peterson2015-03-051-1/+2
|\ \ | |/
| * adjust test_crl_check for trusted first being defaultBenjamin Peterson2015-03-051-1/+2
| |
* | merge 3.4Benjamin Peterson2015-03-051-2/+3
|\ \ | |/
| * expose X509_V_FLAG_TRUSTED_FIRSTBenjamin Peterson2015-03-051-2/+3
| |
* | Merge 3.4 (test_subprocess)Victor Stinner2015-03-051-6/+9
|\ \ | |/
| * Issue #21619: Try to fix test_broken_pipe_cleanup()Victor Stinner2015-03-051-6/+9
| |
* | Fix brownbag in issue 17911 commitRobert Collins2015-03-041-3/+2
| |
* | Issue #17911: traceback module overhaulRobert Collins2015-03-042-0/+240
| | | | | | | | | | | | | | | | | | Provide a way to seed the linecache for a PEP-302 module without actually loading the code. Provide a new object API for traceback, including the ability to not lookup lines at all until the traceback is actually rendered, without any trace of the original objects being kept alive.
* | Added more tests for urllib.parse utility functions.Serhiy Storchaka2015-03-022-69/+129
|\ \ | |/ | | | | These functions are not documented but used in third-party code.
| * Added more tests for urllib.parse utility functions.Serhiy Storchaka2015-03-022-69/+129
| | | | | | | | These functions are not documented but used in third-party code.
* | Issue #23527: Update Gmail port number for STARTTLS to 587.Berker Peksag2015-03-021-1/+1
|\ \ | |/ | | | | Patch by Alex Shkop.
| * Issue #23527: Update Gmail port number for STARTTLS to 587.Berker Peksag2015-03-021-1/+1
| | | | | | | | Patch by Alex Shkop.
* | Issue #23477: Improve test coverage of wsgiref.simple_server.Berker Peksag2015-03-021-0/+25
|\ \ | |/ | | | | | | | | | | The test checks that the environ argument contains correct headers, querystring and path information. Patch by Alex Shkop.
| * Issue #23477: Improve test coverage of wsgiref.simple_server.Berker Peksag2015-03-021-0/+25
| | | | | | | | | | | | | | The test checks that the environ argument contains correct headers, querystring and path information. Patch by Alex Shkop.
* | Issue #23387: Skip test_issue16464 if it raises an 5xx error.Berker Peksag2015-03-022-21/+13
|\ \ | |/ | | | | | | Also, remove support.run_doctest() since there is no doctests in test_urllib2 and urllib.request.
| * Issue #23387: Skip test_issue16464 if it raises an 5xx error.Berker Peksag2015-03-022-21/+13
| | | | | | | | | | Also, remove support.run_doctest() since there is no doctests in test_urllib2 and urllib.request.