summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* | Issue #27136: Merge test_asyncio fix from 3.5Martin Panter2016-06-131-4/+4
|\ \ | |/
| * Issue #27136: Change test to use ::1 for better OS X Tiger compatibilityMartin Panter2016-06-131-4/+4
| |
* | Issue #27186: Skip scandir(bytes) test with os.name == "nt"Martin Panter2016-06-131-1/+1
| |
* | Issue #27186: skip bytes path test for os.scandir() on WindowsBrett Cannon2016-06-121-0/+1
| |
* | Issue #27095: Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes.Serhiy Storchaka2016-06-122-42/+40
| | | | | | | | Patch by Demur Rumed.
* | Issue #27289: Merge from 3.5Berker Peksag2016-06-121-1/+2
|\ \ | |/
| * Issue #27289: Prevent test_urllib2net failures due to EOFError raised by ftplibBerker Peksag2016-06-121-1/+2
| |
* | Issue #25455: Clean up reference loops created in tests for recursiveSerhiy Storchaka2016-06-121-12/+36
|\ \ | |/ | | | | functools.partial objects.
| * Issue #25455: Clean up reference loops created in tests for recursiveSerhiy Storchaka2016-06-121-12/+36
| | | | | | | | functools.partial objects.
* | Issue #25455: Fixed a crash in repr of recursive functools.partial objects.Serhiy Storchaka2016-06-121-0/+37
|\ \ | |/
| * Issue #25455: Fixed a crash in repr of recursive functools.partial objects.Serhiy Storchaka2016-06-121-0/+37
| |
| * Merge headsSerhiy Storchaka2016-06-121-1/+1
| |\
* | \ Merge headsSerhiy Storchaka2016-06-121-1/+1
|\ \ \
| * \ \ Merge typo fixes from 3.5Martin Panter2016-06-121-1/+1
| |\ \ \ | | | |/ | | |/|
| | * | Fix typos and English grammar in documentation and code commentMartin Panter2016-06-121-1/+1
| | | |
* | | | Issue #25455: Fixed a crash in repr of ElementTree.Element with recursive tag.Serhiy Storchaka2016-06-121-1/+7
|\ \ \ \ | | |_|/ | |/| |
| * | | Issue #25455: Fixed a crash in repr of ElementTree.Element with recursive tag.Serhiy Storchaka2016-06-121-1/+7
| | | |
* | | | Issue #27286: Fixed compiling BUILD_MAP_UNPACK_WITH_CALL opcode. CallingSerhiy Storchaka2016-06-122-0/+9
|\ \ \ \ | |/ / / | | / / | |/ / |/| | function with generalized unpacking (PEP 448) and conflicting keyword names could cause undefined behavior.
| * | Issue #27286: Fixed compiling BUILD_MAP_UNPACK_WITH_CALL opcode. CallingSerhiy Storchaka2016-06-122-0/+9
| |/ | | | | | | | | function with generalized unpacking (PEP 448) and conflicting keyword names could cause undefined behavior.
* | Issue #16484: Merge pydoc Windows fixes from 3.5Martin Panter2016-06-121-1/+1
|\ \ | |/
| * Issue #16484: Fix pydoc link and test on Windows, by Kaushik NadikuditiMartin Panter2016-06-121-1/+1
| |