summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* 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
| | | | Patch by Xavier de Gaye.
* Fixes Issue #26373: subprocess.Popen.communicate now correctly ignoresGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-06-041-0/+47
| | | | | BrokenPipeError when the child process dies before .communicate() is called in more (all?) circumstances.
* #16484: Fix pydoc doc links to modules whose names are mixed case.R David Murray2016-06-031-0/+14
| | | | Patch by Sean Rodman, test by Kaushik N.
* first step in backout of bad default->3.5 merge d085b4f779af. Create new ↵Ned Deily2016-06-031-1/+1
| | | | head and fix whitespace.
* 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
|/
* asyncio: Fix getaddrinfo to accept service names (for port)Yury Selivanov2016-06-021-0/+20
| | | | Patch by A. Jesse Jiryu Davis
* asyncio: Support host=b'' for getaddrinfoYury Selivanov2016-06-021-0/+4
|
* #20973: add total ordering tests for ipaddressR David Murray2016-06-021-0/+33
| | | | Patch by Tommy Beadle.
* Issue #27171: Fix typos in documentation, comments, and test function namesMartin Panter2016-06-027-9/+9
|
* Issue #27125: Remove duplicated words from documentation and commentsMartin Panter2016-05-302-2/+2
|
* Issue #27125: Fix various errors like “will [be] inherited”Martin Panter2016-05-291-2/+2
|
* backout 3c9512d8ac0dBenjamin Peterson2016-05-281-8/+0
|
* Issue #20699: Document that “io” methods accept bytes-like objectsMartin Panter2016-05-282-27/+74
| | | | | | | | This matches the usage of ZipFile and BufferedWriter. This still requires return values to be bytes() objects. Also document and test that the write() methods should only access their argument before they return.
* Issue #5784: wbits=0 apparently added in zlib v1.2.3.5Martin Panter2016-05-271-2/+11
|
* Issue #5784: Expand documentation and tests for zlib wbits parameterMartin Panter2016-05-271-0/+43
| | | | Based on documentation by AM Kuchling.
* test_warnings: catch stderr and check warningVictor Stinner2016-05-261-1/+9
| | | | | Check the user warning in test_error_after_default() to not pollute the output, and check the warning logged into stderr.
* Issue #18383: Avoid adding duplicate filters when warnings is reloadedMartin Panter2016-05-261-0/+47
| | | | Based on patch by Alex Shkop.
* Issue #27076: Doc, comment and tests spelling fixesMartin Panter2016-05-2624-29/+29
| | | | Most fixes to Doc/ and Lib/ directories by Ville Skyttä.
* Added Type[C] implementation to typing.py.Guido van Rossum2016-05-241-0/+28
|
* Issue #26927: Fixed test_mmap on platforms with 32-bit off_t (like Android).Serhiy Storchaka2016-05-231-1/+1
| | | | Patch by Xavier de Gaye.
* Fixed an error in previous commit.Serhiy Storchaka2016-05-221-1/+1
|
* Temporary skip curses tests on non-tty (issue #27067).Serhiy Storchaka2016-05-221-0/+2
|
* Issue #27067: Improved curses tests.Serhiy Storchaka2016-05-211-68/+97
|
* asyncio: Fix getaddrinfo to accept None/str/bytes for 'port' argYury Selivanov2016-05-201-0/+22
| | | | Patch by A. Jesse Jiryu Davis.
* Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N"Serhiy Storchaka2016-05-201-0/+3
| | | | format unit.
* Back out pathlib.Path.path attr. (Merge 3.4->3.5)Guido van Rossum2016-05-191-27/+0
|\
| * Back out 7e9605697dfc, 2e3c31ab586a, 759b2cecc289.Guido van Rossum2016-05-191-27/+0
| | | | | | | | | | | | | | These added a path attribute to pathlib.Path objects, and docs. Instead, we're going to use PEP 519. (Starting in the 3.4 branch and merging forward from there since that's what I did originally.)
* | Fix #27014 -- infinite recursion using typing.py.Guido van Rossum2016-05-181-3/+22
| |
* | Fixed test_sizeof for deque.Serhiy Storchaka2016-05-181-2/+2
| |
* | Issue #27041: asyncio: Add loop.create_future methodYury Selivanov2016-05-161-8/+9
| |
* | Issue #27040: Add loop.get_exception_handler methodYury Selivanov2016-05-161-0/+2
| |
* | Issue #27039: Fixed bytearray.remove() for values greater than 127.Serhiy Storchaka2016-05-161-0/+7
| | | | | | | | Patch by Joe Jevnik.
* | Issue #17214: Percent-encode non-ASCII bytes in redirect targetsMartin Panter2016-05-161-0/+35
| | | | | | | | | | | | | | | | | | Some servers send Location header fields with non-ASCII bytes, but "http. client" requires the request target to be ASCII-encodable, otherwise a UnicodeEncodeError is raised. Based on patch by Christian Heimes. Python 2 does not suffer any problem because it allows non-ASCII bytes in the HTTP request target.
* | Issue #14132: Fix redirect handling when target is just a query stringMartin Panter2016-05-162-4/+21
| |
* | Issue #26995: Added tests for "f", "d", "D", "S", "Y", and "U" format codesSerhiy Storchaka2016-05-161-1/+159
| | | | | | | | in PyArg_ParseTuple().
* | Backported tests for issue #18531.Serhiy Storchaka2016-05-161-0/+56
| |
* | asyncio/tests: Ensure a gc_collect for __del__ testingYury Selivanov2016-05-132-0/+2
| | | | | | | | Patch by Philip Jenvey
* | asyncio: Fix unix pipe transport 'repr' methodsYury Selivanov2016-05-131-0/+35
| | | | | | | | | | Patch by Vincent Michel. See also https://github.com/python/asyncio/pull/326
* | asyncio: ease the cert failed regexYury Selivanov2016-05-131-2/+2
| | | | | | | | Patch by Philip Jenvey
* | Issue #26848: Fix asyncio/subprocess.communicate() to handle empty input.Yury Selivanov2016-05-131-0/+19
| |
* | Restored test_interleaved. After issue #8886 it was a duplicate ofSerhiy Storchaka2016-05-131-4/+5
| | | | | | | | test_different_file.
* | Issue #26892: Honor debuglevel flag in urllib.request.HTTPHandler.Senthil Kumaran2016-05-131-2/+9
| | | | | | | | Patch contributed by Chi Hsuan Yen.
* | Issue #22274: Redirect stderr=STDOUT when stdout not redirected, by Akira LiMartin Panter2016-05-131-0/+21
| |
* | Make bytes and bytearray subclass tests compatible with base types tests.Serhiy Storchaka2016-05-121-15/+17
| |
* | Issue #23640: int.from_bytes() no longer bypasses constructors for subclasses.Serhiy Storchaka2016-05-124-0/+51
| |
* | Issue #26881: The modulefinder module now supports extended opcode arguments.Serhiy Storchaka2016-05-081-0/+13
| |