summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* Issue #26896: Disambiguate uses of "importer" with "finder".Brett Cannon2016-07-083-3/+1
| | | | Thanks to Oren Milman for the patch.
* Issue27139 patch by Julio C Cardoza.Steven D'Aprano2016-07-071-0/+16
|
* Issue #21708: Deprecated dbm.dumb behavior that differs from common dbmSerhiy Storchaka2016-07-061-1/+26
| | | | | behavior: creating a database in 'r' and 'w' modes and modifying a database in 'r' mode.
* Issue #19527: Fixed tests with defined COUNT_ALLOCS.Serhiy Storchaka2016-07-0311-6/+29
|\
| * Issue #19527: Fixed tests with defined COUNT_ALLOCS.Serhiy Storchaka2016-07-0310-6/+26
| |
* | Issue #27443: __length_hint__() of bytearray itearator no longer returnSerhiy Storchaka2016-07-031-0/+10
|\ \ | |/ | | | | negative integer for resized bytearray.
| * Issue #27443: __length_hint__() of bytearray itearator no longer returnSerhiy Storchaka2016-07-031-0/+10
| | | | | | | | negative integer for resized bytearray.
* | Issue #27007: The fromhex() class methods of bytes and bytearray subclassesSerhiy Storchaka2016-07-011-1/+26
| | | | | | | | now return an instance of corresponding subclass.
* | Issue #27431: Merge from 3.5Berker Peksag2016-07-011-0/+4
|\ \ | |/
| * Issue #27431: Update default protocol version in shelve.Shelf() documentationBerker Peksag2016-07-011-0/+4
| | | | | | | | shelve.open() documentation was updated in f351fb7ea179.
* | Issue #26721: Change StreamRequestHandler.wfile to BufferedIOBaseMartin Panter2016-06-291-0/+79
| |
* | Merge 3.5 (asyncio)Yury Selivanov2016-06-281-0/+11
|\ \ | |/
| * asyncio: Use socket specs for getaddrinfo() in sock_connect()Yury Selivanov2016-06-281-0/+11
| | | | | | | | Patch by Martin Richard. GH PR #365.
* | Merge 3.5 (asyncio)Yury Selivanov2016-06-281-0/+16
|\ \ | |/
| * asyncio: Fix NameError in sslproto _fatal_error()Yury Selivanov2016-06-281-0/+16
| | | | | | | | Patch by Richard Walker.
* | Issue #27352: Fixed an error message in a test.Serhiy Storchaka2016-06-271-1/+1
| |
* | Merge from 3.5.Larry Hastings2016-06-271-1/+2
|\ \ | |/
| * Merge.Larry Hastings2016-06-2719-33/+402
| |\
| * | Issue #26867: Ubuntu's openssl OP_NO_SSLv3 is forced on by default; fix test.Matthias Klose2016-06-131-1/+2
| | |
* | | Issue 27372: Stop test_idle from changing locale, so test passes.Terry Jan Reedy2016-06-261-6/+9
| | | | | | | | | | | | In 3.6, the warning is now called an error, making it harder to ignore.
* | | Issue #26243: Only the level argument to zlib.compress() is keyword argumentSerhiy Storchaka2016-06-251-1/+3
| | | | | | | | | | | | now. The first argument is positional-only.
* | | Issue #26186: Remove the restriction that built-in and extensionBrett Cannon2016-06-251-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | modules can't be lazily loaded. Thanks to Python 3.6 allowing for types.ModuleType to have its __class__ mutated, the restriction can be lifted by calling create_module() on the wrapped loader.
* | | Merge from 3.5Brett Cannon2016-06-251-3/+13
|\ \ \ | | |/ | |/|
| * | Fix a scoping issue where an UnboundLocalError was triggered if aBrett Cannon2016-06-251-3/+13
| | | | | | | | | | | | lazy-loaded module was already in sys.modules.
* | | Issue #27038: Expose DirEntry as os.DirEntry.Brett Cannon2016-06-241-0/+1
| | | | | | | | | | | | Thanks to Jelle Zijlstra for the code portion of the patch.
* | | Issue #27186: Update os.fspath()/PyOS_FSPath() to check the returnBrett Cannon2016-06-242-30/+34
| | | | | | | | | | | | | | | | | | | | | type of __fspath__(). As part of this change, also make sure that the pure Python implementation of os.fspath() is tested.
* | | Issue #18300: Merge from 3.5Berker Peksag2016-06-242-15/+13
|\ \ \ | |/ /
| * | Issue #18300: Set TERM='' by default in assert_python_*Berker Peksag2016-06-242-15/+13
| | |
* | | Issue #24137: Run IDLE, test_idle, and htest with tkinter default root disabled.Terry Jan Reedy2016-06-211-0/+1
| | | | | | | | | | | | | | | Fix code and tests that fail with this restriction. Fix htests to not create a second and redundant root and mainloop.
* | | Merge 3.5.Stefan Krah2016-06-201-1/+4
|\ \ \ | |/ /
| * | Issue #27006: from_float(): call the subclass' __new__() and __init__().Stefan Krah2016-06-201-1/+4
| | |
* | | Added more tests for issue #27122.Serhiy Storchaka2016-06-201-5/+11
|\ \ \ | |/ /
| * | Added more tests for issue #27122.Serhiy Storchaka2016-06-201-5/+11
| | |
* | | Issue #27294: Numerical state in the repr for Tkinter event objects is nowSerhiy Storchaka2016-06-181-0/+54
|\ \ \ | |/ / | | | | | | represented as a compination of known flags.
| * | Issue #27294: Numerical state in the repr for Tkinter event objects is nowSerhiy Storchaka2016-06-181-0/+54
| | | | | | | | | | | | represented as a compination of known flags.
* | | Issue #27177: Match objects in the re module now support index-like objectsSerhiy Storchaka2016-06-181-7/+21
| | | | | | | | | | | | as group indices. Based on patches by Jeroen Demeyer and Xiang Zhang.
* | | Issue #26536: Skip test_sio_loopback_fast_path under Windows 7Berker Peksag2016-06-181-2/+8
| | |
* | | Issue #26754: PyUnicode_FSDecoder() accepted a filename argument encoded asSerhiy Storchaka2016-06-184-0/+44
|\ \ \ | |/ / | | | | | | an iterable of integers. Now only strings and byte-like objects are accepted.
| * | Issue #26754: PyUnicode_FSDecoder() accepted a filename argument encoded asSerhiy Storchaka2016-06-184-0/+44
| | | | | | | | | | | | an iterable of integers. Now only strings and byte-like objects are accepted.
* | | Issue #26536: socket.ioctl now supports SIO_LOOPBACK_FAST_PATH. Patch by ↵Steve Dower2016-06-171-0/+10
| | | | | | | | | | | | Daniel Stokes.
* | | Issue #27123: When an exception is raised within the context beingGregory P. Smith2016-06-141-0/+28
|\ \ \ | |/ / | | | | | | | | | | | | | | | managed by a contextlib.ExitStack() and one of the exit stack generators catches and raises it in a chain, do not re-raise the original exception when exiting, let the new chained one through. This avoids the PEP 479 bug described in issue25782.
| * | Issue #27123: When an exception is raised within the context beingGregory P. Smith2016-06-141-0/+28
| | | | | | | | | | | | | | | | | | | | | managed by a contextlib.ExitStack() and one of the exit stack generators catches and raises it in a chain, do not re-raise the original exception when exiting, let the new chained one through. This avoids the PEP 479 bug described in issue25782.
* | | Issue #16182: Merge test_readline from 3.5Martin Panter2016-06-141-1/+1
|\ \ \ | |/ /
| * | Issue #16182: One more check for set_pre_input_hook()Martin Panter2016-06-141-1/+1
| | |
* | | Issue #16182: Merge readline update from 3.5Martin Panter2016-06-141-7/+15
|\ \ \ | |/ /
| * | Issue #16182: set_pre_input_hook() may not exist; document, and update testMartin Panter2016-06-141-7/+15
| | |
* | | Issue #16182: Merge test_readline from 3.5Martin Panter2016-06-141-5/+13
|\ \ \ | |/ /
| * | Issue #16182: Attempted workarounds for Apple EditlineMartin Panter2016-06-141-5/+13
| | |
* | | Issue #16182: Merge readline locale fix from 3.5Martin Panter2016-06-141-6/+90
|\ \ \ | |/ /
| * | Issue #16182: Fix readline begidx, endidx, and use locale encodingMartin Panter2016-06-141-4/+137
| | | | | | | | | | | | Based on patch by Serhiy Storchaka.