summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* [3.6] bpo-30814: Fixed a race condition when import a submodule from a packag...Serhiy Storchaka2017-07-061-0/+2
* [3.6] bpo-30828: Fix out of bounds write in `asyncio.CFuture.remove_done_call...Yury Selivanov2017-07-051-0/+1
* [3.6] bpo-30854: Fix compile error when --without-threads (GH-2581) (#2583)Masayuki Yamamoto2017-07-051-0/+2
* [3.6] NEWS for 30777 (GH-2576) (#2579)terryjreedy2017-07-051-0/+2
* bpo-30319: socket.close() now ignores ECONNRESET (#2565) (#2566)Victor Stinner2017-07-041-0/+1
* [3.6] bpo-30441: Fix bug when modifying os.environ while iterating over it (G...Serhiy Storchaka2017-07-042-0/+2
* [3.6] bpo-30597: Show expected input in custom 'print' error message. (GH-2531)Nick Coghlan2017-07-031-0/+3
* [3.6] bpo-30703: Improve signal delivery (GH-2415) (#2527)Antoine Pitrou2017-07-011-0/+6
* [3.6] bpo-30807: signal.setitimer() may disable the timer by mistake (GH-2493...Antoine Pitrou2017-06-301-0/+6
* [3.6] bpo-30495: IDLE: improve textview with docstrings, PEP8 names, more tes...terryjreedy2017-06-291-0/+2
* [3.6] bpo-30723: IDLE -- Enhance parenmatch; add style, flash, and help (GH-2...terryjreedy2017-06-282-0/+6
* [3.6] bpo-30674: IDLE: add docstrings to grep.py (GH-2213) (#2434)terryjreedy2017-06-271-0/+1
* [3.6] bpo-21519: IDLE basic custom key entry better detects duplicates. (GH-2...terryjreedy2017-06-271-0/+2
* [3.6] bpo-29910: IDLE no longer deletes a character after commenting out a re...terryjreedy2017-06-271-0/+3
* [3.6] bpo-30769: Fix reference leak introduced in 77703942c59 (GH-2416) (#2425)Emily Morehouse2017-06-271-0/+1
* [3.6] bpo-30728: IDLE: Refactor configdialog to PEP8 names (GH-2307) (#2421)terryjreedy2017-06-271-0/+4
* [3.6] bpo-30765: Avoid blocking when PyThread_acquire_lock() is asked not to ...Antoine Pitrou2017-06-261-0/+2
* [3.6] bpo-6739: IDLE: Check for valid keybinding in config_keys (GH-2377) (#2...terryjreedy2017-06-261-0/+3
* [3.6] bpo-30746: Prohibited the '=' character in environment variable names (...Serhiy Storchaka2017-06-251-0/+3
* [3.6] bpo-30616: Functional API of enum allows to create empty enums. (#2304)...Dong-hee Na2017-06-241-0/+3
* [3.6] bpo-30645: don't append to an inner loop path in imp.load_package() (GH...Brett Cannon2017-06-232-0/+5
* [3.6] bpo-30730: Prevent environment variables injection in subprocess on Win...Serhiy Storchaka2017-06-231-0/+3
* Add "Misc/NEWS.d" directory tree for "blurb". GH-2329larryhastings2017-06-2311-0/+11
* bpo-30694: Upgrade Modules/expat/ to libexpat 2.2.1 (#2300) (#2313)Victor Stinner2017-06-211-0/+9
* [3.6] bpo-29755: Fixed the lgettext() family of functions in the gettext modu...Serhiy Storchaka2017-06-201-0/+3
* bpo-30500: Fix the NEWS entry (#2296)Victor Stinner2017-06-201-1/+1
* bpo-30500: urllib: Simplify splithost by calling into urlparse. (#1849) (#2289)Victor Stinner2017-06-202-0/+6
* bpo-30687: Fixes build scripts to find msbuild.exe and stop relying on vcvars...Steve Dower2017-06-191-0/+3
* Bump version for post 3.6.2rc1Ned Deily2017-06-181-1/+13
* Version bump to 3.6.2rc1v3.6.2rc1Ned Deily2017-06-171-1/+1
* bpo-30038: add Misc/NEWS entry.Ned Deily2017-06-171-0/+3
* bpo-23894: add Misc/NEWS entry. (#2255)Ned Deily2017-06-171-0/+2
* bpo-30176: Add missing curses cell attributes constants (GH-1302). (GH-2241)Mariatta2017-06-161-0/+2
* [email] bpo-29478: Fix passing max_line_length=None from Compat32 policy (GH-...Mariatta2017-06-162-0/+4
* [3.6] bpo-30682: Removed a too-strict assertion that failed for certain f-str...Serhiy Storchaka2017-06-161-0/+3
* [3.6]Add IDLE items to NEWS and idlelib/NEWS.txt (#2239) (#2240)terryjreedy2017-06-161-0/+14
* bpo-30450: Pull Windows dependencies from GitHub rather than svn (GH-1783) (G...Zachary Ware2017-06-161-1/+9
* bpo-28837: Fix lib2to3 handling of map/zip/filter calls when followed with a ...Mariatta2017-06-161-0/+1
* bpo-23890: Fix ref cycle in TestCase.assertRaises (#858)Victor Stinner2017-06-151-0/+3
* bpo-30149: Fix partialmethod without explicit self parameter (#1308) (#1662)Dong-hee Na2017-06-151-0/+4
* [3.6] bpo-29931 fix __lt__ check in ipaddress.ip_interface for both v4 and v6...Serhiy Storchaka2017-06-151-0/+3
* [3.6] bpo-30605: Fix compiling binary regexs with BytesWarnings enabled. (GH-...Serhiy Storchaka2017-06-152-0/+4
* bpo-29591: Upgrade Modules/expat to libexpat 2.2 (#2164) (#2200)Victor Stinner2017-06-141-0/+4
* [3.6] bpo-24484: Avoid race condition in multiprocessing cleanup (GH-2159) (#...Antoine Pitrou2017-06-131-0/+2
* [3.6] bpo-30604: Move co_extra_freefuncs to interpreter state to avoid crashe...Dino Viehland2017-06-131-1/+3
* [3.6] bpo-30177: add NEWS entry (#2134)Antoine Pietri2017-06-121-0/+3
* [3.6] bpo-28994: Fixed errors handling in atexit._run_exitfuncs(). (GH-2034) ...Serhiy Storchaka2017-06-121-0/+3
* Revert "[3.6] bpo-29406: asyncio SSL contexts leak sockets after calling clos...Yury Selivanov2017-06-111-4/+0
* bpo-30508: Don't log exceptions if Task/Future "cancel()" method was called. ...Yury Selivanov2017-06-111-0/+3
* [3.6] Add IDLE news items (GH-2090) (#2096)terryjreedy2017-06-111-0/+19