summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* | Issue #7830: Flatten nested functools.partial.Alexander Belopolsky2015-03-011-0/+10
| |
* | Fixed pydoc tests when run with -OO.Serhiy Storchaka2015-03-011-0/+4
|\ \ | |/
| * Fixed pydoc tests when run with -OO.Serhiy Storchaka2015-03-011-0/+4
| |
* | Issue #19980: Improved help() for non-recognized strings. help('') nowSerhiy Storchaka2015-02-281-1/+4
| | | | | | | | | | shows the help on str. help('help') now shows the help on help(). Original patch by Mark Lawrence.
* | Fixes #23521: Corrected pure python implementation of timedelta division.Alexander Belopolsky2015-02-281-0/+34
|\ \ | |/ | | | | | | * Eliminated OverflowError from timedelta * float for some floats; * Corrected rounding in timedlta true division.
| * Fixes #23521: Corrected pure python implementation of timedelta division.Alexander Belopolsky2015-02-281-0/+34
| | | | | | | | | | * Eliminated OverflowError from timedelta * float for some floats; * Corrected rounding in timedlta true division.
* | Fixed a test for issue #21619 on Windows.Serhiy Storchaka2015-02-281-1/+1
|\ \ | |/ | | | | On Windows an OSError with errno=EINVAL is raised.
| * Fixed a test for issue #21619 on Windows.Serhiy Storchaka2015-02-281-1/+1
| | | | | | | | On Windows an OSError with errno=EINVAL is raised.
* | Issue #21619: Popen objects no longer leave a zombie after exit in the withSerhiy Storchaka2015-02-281-0/+15
|\ \ | |/ | | | | statement if the pipe was broken. Patch by Martin Panter.
| * Issue #21619: Popen objects no longer leave a zombie after exit in the withSerhiy Storchaka2015-02-281-0/+15
| | | | | | | | statement if the pipe was broken. Patch by Martin Panter.
* | Issue #22834: Drop a redundant comment and use errno instead of anBrett Cannon2015-02-271-2/+2
| | | | | | | | | | | | integer. Thanks to Serhiy Storchaka and Martin Panter for the suggestions.
* | Merge 3.4 (httplib)Victor Stinner2015-02-271-0/+3
|\ \ | |/
| * Issue #23526: Fix ResourceWarning in test_httplib. Patch written by Alex Shkop.Victor Stinner2015-02-271-0/+3
| |