summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* [3.6] Mention how to disable signal fd wakeup (GH-2140) (#2149)Antoine Pitrou2017-06-131-2/+4
* bpo-6519: Improve Python Input Output Tutorial (GH-2143) (GH-2145)Mariatta2017-06-131-21/+29
* [3.6] bpo-30604: Move co_extra_freefuncs to interpreter state to avoid crashe...Dino Viehland2017-06-136-23/+180
* bpo-30217: add the operators ~ and | to the index (GH-1502) (GH-2136)Marco Buttu2017-06-121-0/+2
* [3.6] bpo-30177: add NEWS entry (#2134)Antoine Pietri2017-06-121-0/+3
* bpo-23404: `make regen-all` What's New entry (#2128)Nick Coghlan2017-06-121-0/+36
* [3.6] bpo-28994: Fixed errors handling in atexit._run_exitfuncs(). (GH-2034) ...Serhiy Storchaka2017-06-123-1/+14
* bpo-30621: Update Input Output Tutorial Example(GH-2074) (GH-2118)Mariatta2017-06-121-0/+1
* backport ssl doc fixes (#2117)Benjamin Peterson2017-06-111-2/+2
* [3.6]bpo-20185: Adjust IDLE test to 3.7 Clinic change [GH-542] (#2116)terryjreedy2017-06-111-4/+4
* [3.6]bpo-29995: Adjust IDLE test for 3.7 re.escape change [GH-1007] (#2114)terryjreedy2017-06-111-2/+2
* [3.6] Use Travis to make sure all generated files are up to date (GH-2080) (G...Zachary Ware2017-06-114-135/+144
* Revert "[3.6] bpo-29406: asyncio SSL contexts leak sockets after calling clos...Yury Selivanov2017-06-113-61/+1
* bpo-30508: Don't log exceptions if Task/Future "cancel()" method was called. ...Yury Selivanov2017-06-116-1/+49
* [3.6]bpo-30022: idlelib.run IOError -> OSError [GH-1051] (#2107)terryjreedy2017-06-111-1/+1
* [3.6]bpo-30144: change idlelib abc import [GH-1263] (#2106)terryjreedy2017-06-111-1/+1
* [3.6] bpo-29919 Remove unused imports from idlelib [GH-137] (#2105)terryjreedy2017-06-117-9/+4
* [3.6] Remove unused imports (#2104)terryjreedy2017-06-114-4/+0
* bpo-30495: IDLE: Modernize textview.py with docstrings and PEP8 names (#1839)...terryjreedy2017-06-113-42/+62
* [3.6] bpo-30166: backport pyshell changes (GH 1293) (#2098)terryjreedy2017-06-111-5/+6
* [3.6] Update idlelib NEWS for 3.6 (GH-2089) (#2097)terryjreedy2017-06-111-3/+26
* [3.6] Add IDLE news items (GH-2090) (#2096)terryjreedy2017-06-111-0/+19
* bpo-28556: Updates to typing module (GH-2076) (GH-2087)Mariatta2017-06-103-5/+99
* [3.6] bpo-27425: Be more explicit in .gitattributes (GH-840) (GH-2083)Zachary Ware2017-06-1027-2341/+2374
* bpo-30312: Small correction in datastructures set code sample (GH-2081) (GH-2...KatherineMichel2017-06-101-1/+1
* bpo-25409: Clarify fnmatch and fnmatchcase documentation (GH-1535) (GH-2065)Mariatta2017-06-101-4/+4
* [3.6] bpo-29406: asyncio SSL contexts leak sockets after calling close with c...Yury Selivanov2017-06-103-1/+61
* [3.6] Regenerate Argument Clinic code for bpo-19180. (GH-2073). (#2077)Serhiy Storchaka2017-06-102-2/+2
* bpo-30038: fix race condition in signal delivery + wakeup fd (#1082) (#2075)Victor Stinner2017-06-101-7/+26
* [3.6] bpo-30290: IDLE - pep8 names and tests for help-about (#2070)terryjreedy2017-06-102-99/+222
* [3.6] Fix TypeError is asyncio/proactor_events (GH-993) (#2061)Yury Selivanov2017-06-101-2/+3
* bpo-30266: support "= None" pattern in AbstractContextManager (GH-1448) (GH-2...Mariatta2017-06-103-3/+16
* [3.6] bpo-30417: Disable `cpu` resource on AppVeyor (GH-1951)Zachary Ware2017-06-101-1/+1
* [3.6] bpo-30335: Add deprecation alias entry for assertNotRegexpMatches (GH-1...Mariatta2017-06-101-5/+10
* [3.6] Make codecov config on master the only config used (GH-2041) (GH-2052)Brett Cannon2017-06-101-0/+1
* Break circular references when closing SSLTransport objects (#981) (#2049)Yury Selivanov2017-06-092-4/+9
* Closing transport during handshake process leaks socket (#480) (#2044)Yury Selivanov2017-06-093-2/+23
* [3.6] Clarify what --enable-optimizations does (GH-1847) (GH-2039)Brett Cannon2017-06-092-18/+6
* Fix waiter cancellation in asyncio.Lock (#1031) (#2037)Yury Selivanov2017-06-093-5/+37
* [3.6] bpo-30039: Don't run signal handlers while resuming a yield from stack ...Yury Selivanov2017-06-094-3/+71
* bpo-30524: Write unit tests for FASTCALL (#2022) (#2030)Victor Stinner2017-06-092-0/+277
* [3.6] IDLE test_textview: add comments and test, increase coverage to 100% (G...terryjreedy2017-06-092-9/+25
* bpo-24755: Document asyncio.wrap_future (GH-603) (GH-2019)Mariatta2017-06-091-0/+5
* [3.6] bpo-19180: Updated references for RFC 1750, RFC 3280 & RFC 4366Nick Coghlan2017-06-093-13/+10
* bpo-30524: Fix _PyStack_UnpackDict() (#1886)Victor Stinner2017-06-093-18/+20
* [3.6] bpo-30529: Fix errors for invalid whitespaces in f-string subexpression...Serhiy Storchaka2017-06-082-24/+17
* bpo-30418: Popen.communicate() always ignore EINVAL (#2002) (#2004)Victor Stinner2017-06-082-6/+11
* bpo-30601: Fix a refleak in WindowsConsoleIO (#2003) (#2008)Victor Stinner2017-06-081-3/+2
* [3.6] bpo-30584: Fix test_os fails on non-English Windows (GH-1980) (#1999)Denis Osipov2017-06-082-1/+4
* [3.6] bpo-30594: Fixed refcounting in newPySSLSocket (GH-1992) (#1994)Nathaniel J. Smith2017-06-081-2/+1