summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* Fixed #27251: merged fix from 3.5.Vinay Sajip2016-06-071-1/+2
|\
| * Fixed #27251: corrected string/bytes handling in credentials.Vinay Sajip2016-06-071-1/+2
* | Issue #26983: Fixed test_format failure.Serhiy Storchaka2016-06-061-1/+1
* | Issue #27107: mailbox.fcntl = None on WindowsMartin Panter2016-06-061-1/+1
* | Issue #27110: Add smtpd.SMTPChannel to __all__, by Jacek KołodziejMartin Panter2016-06-061-0/+11
* | Issue #27109: Add InvalidFileException to __all__, by Jacek KołodziejMartin Panter2016-06-061-1/+7
* | Issue #27108: Add missing names to mimetypes.__all__, by Jacek KołodziejMartin Panter2016-06-061-0/+6
* | Issue #27107: Add exception classes to mailbox.__all__, by Jacek KołodziejMartin Panter2016-06-061-1/+7
* | Issue #27105: Add cgi.test() to __all__, based on Jacek Kołodziej’s patchMartin Panter2016-06-061-0/+6
* | Issue #27164: Merge raw Deflate zdict support from 3.5Martin Panter2016-06-051-0/+9
|\ \ | |/
| * Issue #27164: Allow decompressing raw Deflate streams with predefined zdictMartin Panter2016-06-051-0/+9
* | Issue #21916: Added more tests for the turtle module.Serhiy Storchaka2016-06-051-0/+36
|\ \ | |/
| * Issue #21916: Added more tests for the turtle module.Serhiy Storchaka2016-06-051-0/+36
* | Issue #24291: Merge wsgi partial write fix from 3.5Martin Panter2016-06-051-1/+80
|\ \ | |/
| * Issue #24291: Avoid WSGIRequestHandler doing partial writesMartin Panter2016-06-051-1/+80
* | merge from 3.5. (moves the issue26372 tests to the proper class)Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-06-051-46/+46
|\ \ | |/
| * Move the BrokenPipeError tests to the POSIXProcessTestCase classGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-06-051-46/+46
* | Fixes whitespace issueKushal Das2016-06-041-1/+0
* | Issue #25548: Showing memory address of class objects in replKushal Das2016-06-0416-80/+92
* | Issue #19611: handle implicit parameters in inspect.signatureNick Coghlan2016-06-041-0/+26
* | issue27186: add open/io.open; patch by Jelle ZijlstraEthan Furman2016-06-041-0/+26
* | issue27186: fix fsencode/fsdecode and update tests; patch by Jelle ZijlstraEthan Furman2016-06-041-6/+13
* | Issue #21916: Added tests for the turtle module.Serhiy Storchaka2016-06-041-0/+400
|\ \ | |/
| * Issue #21916: Added tests for the turtle module.Serhiy Storchaka2016-06-041-0/+400
* | issue27186: add PathLike ABCEthan Furman2016-06-041-0/+2
* | issue27186: add C version of os.fspath(); patch by Jelle ZijlstraEthan Furman2016-06-041-0/+7
* | issue26372 - use os.devnull instead of /dev/nullGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-06-041-1/+1
|\ \ | |/
| * issue26372 - use os.devnull instead of /dev/nullGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-06-041-1/+1
* | Issue #20041: Fixed TypeError when frame.f_trace is set to None.Serhiy Storchaka2016-06-041-0/+9
|\ \ | |/
| * Issue #20041: Fixed TypeError when frame.f_trace is set to None.Serhiy Storchaka2016-06-041-0/+9
* | issue27182: update fsencode and fsdecode for os.path(); patch by Dusty PhillipsEthan Furman2016-06-041-0/+15
* | merge from 3.5 - Fixes Issue #26373: subprocess.Popen.communicateGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-06-041-0/+47
|\ \ | |/
| * Fixes Issue #26373: subprocess.Popen.communicate now correctly ignoresGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-06-041-0/+47
* | Merge: #16484: Fix pydoc doc links to modules whose names are mixed case.R David Murray2016-06-031-0/+14
|\ \ | |/
| * #16484: Fix pydoc doc links to modules whose names are mixed case.R David Murray2016-06-031-0/+14
| * first step in backout of bad default->3.5 merge d085b4f779af. Create new hea...Ned Deily2016-06-031-1/+1
* | signal, socket, and ssl module IntEnum constant name lookups now return aGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-06-031-0/+36
* | Issue #26983: float() now always return an instance of exact float.Serhiy Storchaka2016-06-032-10/+17
* | Merge headsSerhiy Storchaka2016-06-031-0/+21
|\ \
| * | issue27167: make the test not care about the exact signal name in theGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-06-031-1/+3
| * | Issue #27167: Clarify the subprocess.CalledProcessError error message textGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-06-031-0/+19
* | | Merge 3.5.Serhiy Storchaka2016-06-031-30/+32
|\ \ \ | |/ / |/| / | |/
| * Issue #27185: Rename test_string_merged.py back to test_string.py.Serhiy Storchaka2016-06-031-0/+0
| * Issue #27185: Merge test_pep292.py into test_string_merged.py.Serhiy Storchaka2016-06-032-250/+244
| |\
| | * Issue #27185: Rename test_pep292.py to test_string_merged.py.Serhiy Storchaka2016-06-031-0/+0
| * | Issue #27185: Rename test_string.py to test_string_merged.py.Serhiy Storchaka2016-06-031-0/+0
| |/
* | Issue25931: fix tests broken by the conditional define of socketserver.Forking*Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-06-031-6/+7
* | Merge: #27185: move test_pep292 into test_string.R David Murray2016-06-022-248/+240
|\ \
| * | #27185: move test_pep292 into test_string.R David Murray2016-06-022-248/+240
| |/
* | issue27186 -- initial docs, tests, and python version of os.fspathEthan Furman2016-06-021-0/+21