| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Issue #26186: Remove the restriction that built-in and extension | Brett Cannon | 2016-06-25 | 1 | -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.5 | Brett Cannon | 2016-06-25 | 1 | -3/+13 |
| |\ | |||||
| | * | Fix a scoping issue where an UnboundLocalError was triggered if a | Brett Cannon | 2016-06-25 | 1 | -3/+13 |
| | | | | | | | | | lazy-loaded module was already in sys.modules. | ||||
| * | | Issue #27038: Expose DirEntry as os.DirEntry. | Brett Cannon | 2016-06-24 | 1 | -0/+1 |
| | | | | | | | | | Thanks to Jelle Zijlstra for the code portion of the patch. | ||||
| * | | Issue #27186: Update os.fspath()/PyOS_FSPath() to check the return | Brett Cannon | 2016-06-24 | 2 | -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.5 | Berker Peksag | 2016-06-24 | 2 | -15/+13 |
| |\ \ | |/ | |||||
| | * | Issue #18300: Set TERM='' by default in assert_python_* | Berker Peksag | 2016-06-24 | 2 | -15/+13 |
| | | | |||||
| * | | Issue #24137: Run IDLE, test_idle, and htest with tkinter default root disabled. | Terry Jan Reedy | 2016-06-21 | 1 | -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 Krah | 2016-06-20 | 1 | -1/+4 |
| |\ \ | |/ | |||||
| | * | Issue #27006: from_float(): call the subclass' __new__() and __init__(). | Stefan Krah | 2016-06-20 | 1 | -1/+4 |
| | | | |||||
| * | | Added more tests for issue #27122. | Serhiy Storchaka | 2016-06-20 | 1 | -5/+11 |
| |\ \ | |/ | |||||
| | * | Added more tests for issue #27122. | Serhiy Storchaka | 2016-06-20 | 1 | -5/+11 |
| | | | |||||
| * | | Issue #27294: Numerical state in the repr for Tkinter event objects is now | Serhiy Storchaka | 2016-06-18 | 1 | -0/+54 |
| |\ \ | |/ | | | | | represented as a compination of known flags. | ||||
| | * | Issue #27294: Numerical state in the repr for Tkinter event objects is now | Serhiy Storchaka | 2016-06-18 | 1 | -0/+54 |
| | | | | | | | | | represented as a compination of known flags. | ||||
| * | | Issue #27177: Match objects in the re module now support index-like objects | Serhiy Storchaka | 2016-06-18 | 1 | -7/+21 |
| | | | | | | | | | as group indices. Based on patches by Jeroen Demeyer and Xiang Zhang. | ||||
| * | | Issue #26536: Skip test_sio_loopback_fast_path under Windows 7 | Berker Peksag | 2016-06-18 | 1 | -2/+8 |
| | | | |||||
| * | | Issue #26754: PyUnicode_FSDecoder() accepted a filename argument encoded as | Serhiy Storchaka | 2016-06-18 | 4 | -0/+44 |
| |\ \ | |/ | | | | | an iterable of integers. Now only strings and byte-like objects are accepted. | ||||
| | * | Issue #26754: PyUnicode_FSDecoder() accepted a filename argument encoded as | Serhiy Storchaka | 2016-06-18 | 4 | -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 Dower | 2016-06-17 | 1 | -0/+10 |
| | | | | | | | | | Daniel Stokes. | ||||
| * | | Issue #27123: When an exception is raised within the context being | Gregory P. Smith | 2016-06-14 | 1 | -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 being | Gregory P. Smith | 2016-06-14 | 1 | -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.5 | Martin Panter | 2016-06-14 | 1 | -1/+1 |
| |\ \ | |/ | |||||
| | * | Issue #16182: One more check for set_pre_input_hook() | Martin Panter | 2016-06-14 | 1 | -1/+1 |
| | | | |||||
| * | | Issue #16182: Merge readline update from 3.5 | Martin Panter | 2016-06-14 | 1 | -7/+15 |
| |\ \ | |/ | |||||
| | * | Issue #16182: set_pre_input_hook() may not exist; document, and update test | Martin Panter | 2016-06-14 | 1 | -7/+15 |
| | | | |||||
| * | | Issue #16182: Merge test_readline from 3.5 | Martin Panter | 2016-06-14 | 1 | -5/+13 |
| |\ \ | |/ | |||||
| | * | Issue #16182: Attempted workarounds for Apple Editline | Martin Panter | 2016-06-14 | 1 | -5/+13 |
| | | | |||||
| * | | Issue #16182: Merge readline locale fix from 3.5 | Martin Panter | 2016-06-14 | 1 | -6/+90 |
| |\ \ | |/ | |||||
| | * | Issue #16182: Fix readline begidx, endidx, and use locale encoding | Martin Panter | 2016-06-14 | 1 | -4/+137 |
| | | | | | | | | | Based on patch by Serhiy Storchaka. | ||||
| * | | Issue #27136: Merge test_asyncio fix from 3.5 | Martin Panter | 2016-06-13 | 1 | -4/+4 |
| |\ \ | |/ | |||||
| | * | Issue #27136: Change test to use ::1 for better OS X Tiger compatibility | Martin Panter | 2016-06-13 | 1 | -4/+4 |
| | | | |||||
| * | | Issue #27186: Skip scandir(bytes) test with os.name == "nt" | Martin Panter | 2016-06-13 | 1 | -1/+1 |
| | | | |||||
| * | | Issue #27186: skip bytes path test for os.scandir() on Windows | Brett Cannon | 2016-06-12 | 1 | -0/+1 |
| | | | |||||
| * | | Issue #27095: Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes. | Serhiy Storchaka | 2016-06-12 | 2 | -42/+40 |
| | | | | | | | | | Patch by Demur Rumed. | ||||
| * | | Issue #27289: Merge from 3.5 | Berker Peksag | 2016-06-12 | 1 | -1/+2 |
| |\ \ | |/ | |||||
| | * | Issue #27289: Prevent test_urllib2net failures due to EOFError raised by ftplib | Berker Peksag | 2016-06-12 | 1 | -1/+2 |
| | | | |||||
| * | | Issue #25455: Clean up reference loops created in tests for recursive | Serhiy Storchaka | 2016-06-12 | 1 | -12/+36 |
| |\ \ | |/ | | | | | functools.partial objects. | ||||
| | * | Issue #25455: Clean up reference loops created in tests for recursive | Serhiy Storchaka | 2016-06-12 | 1 | -12/+36 |
| | | | | | | | | | functools.partial objects. | ||||
| * | | Issue #25455: Fixed a crash in repr of recursive functools.partial objects. | Serhiy Storchaka | 2016-06-12 | 1 | -0/+37 |
| |\ \ | |/ | |||||
| | * | Issue #25455: Fixed a crash in repr of recursive functools.partial objects. | Serhiy Storchaka | 2016-06-12 | 1 | -0/+37 |
| | | | |||||
| | * | Merge heads | Serhiy Storchaka | 2016-06-12 | 1 | -1/+1 |
| | |\ | |||||
| * | \ | Merge heads | Serhiy Storchaka | 2016-06-12 | 1 | -1/+1 |
| |\ \ \ | |||||
| | * \ \ | Merge typo fixes from 3.5 | Martin Panter | 2016-06-12 | 1 | -1/+1 |
| | |\ \ \ | | | |/ | | |/| | |||||
| | | * | | Fix typos and English grammar in documentation and code comment | Martin Panter | 2016-06-12 | 1 | -1/+1 |
| | | | | | |||||
| * | | | | Issue #25455: Fixed a crash in repr of ElementTree.Element with recursive tag. | Serhiy Storchaka | 2016-06-12 | 1 | -1/+7 |
| |\ \ \ \ | | |_|/ | |/| | | |||||
| | * | | | Issue #25455: Fixed a crash in repr of ElementTree.Element with recursive tag. | Serhiy Storchaka | 2016-06-12 | 1 | -1/+7 |
| | | | | | |||||
| * | | | | Issue #27286: Fixed compiling BUILD_MAP_UNPACK_WITH_CALL opcode. Calling | Serhiy Storchaka | 2016-06-12 | 2 | -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. Calling | Serhiy Storchaka | 2016-06-12 | 2 | -0/+9 |
| | |/ | | | | | | | | | function with generalized unpacking (PEP 448) and conflicting keyword names could cause undefined behavior. | ||||
| * | | Issue #16484: Merge pydoc Windows fixes from 3.5 | Martin Panter | 2016-06-12 | 1 | -1/+1 |
| |\ \ | |/ | |||||
| | * | Issue #16484: Fix pydoc link and test on Windows, by Kaushik Nadikuditi | Martin Panter | 2016-06-12 | 1 | -1/+1 |
| | | | |||||
