summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
Commit message (Expand)AuthorAgeFilesLines
* Update 3.5 to use blurb!Larry Hastings2017-07-241-9670/+0
* [3.5] bpo-30879: os.listdir() and os.scandir() now emit bytes names when (GH-...Serhiy Storchaka2017-07-111-0/+3
* [3.5] bpo-30746: Prohibited the '=' character in environment variable names (...Serhiy Storchaka2017-06-251-0/+3
* [3.5] bpo-30645: don't append to an inner loop path in imp.load_package() (GH...Brett Cannon2017-06-231-0/+4
* [3.5] bpo-30730: Prevent environment variables injection in subprocess on Win...Serhiy Storchaka2017-06-231-0/+3
* bpo-30694: Upgrade Modules/expat/ to libexpat 2.2.1 (#2300) (#2314)Victor Stinner2017-06-211-0/+9
* [3.5] bpo-29755: Fixed the lgettext() family of functions in the gettext modu...Serhiy Storchaka2017-06-201-0/+3
* bpo-30500: Fix the NEWS entry (#2295)Victor Stinner2017-06-201-1/+1
* bpo-30500: urllib: Simplify splithost by calling into urlparse. (#1849) (#2290)Victor Stinner2017-06-201-0/+5
* bpo-30687: Fixes build scripts to find msbuild.exe and stop relying on vcvars...Steve Dower2017-06-191-0/+3
* bpo-30176: Add missing curses cell attributes constants (#2277)Xiang Zhang2017-06-191-0/+2
* [email] bpo-29478: Fix passing max_line_length=None from Compat32 policy (GH-...Mariatta2017-06-161-0/+3
* Fix ref cycles in TestCase.assertRaises() (#193) (#2228)Victor Stinner2017-06-151-0/+3
* bpo-30149: Fix partialmethod without explicit self parameter (#1308) (#1663)Dong-hee Na2017-06-151-0/+4
* [3.5] bpo-29931 fix __lt__ check in ipaddress.ip_interface for both v4 and v6...Serhiy Storchaka2017-06-151-0/+3
* bpo-29591: Upgrade Modules/expat to libexpat 2.2 (#2164) (#2201)Victor Stinner2017-06-151-0/+4
* [3.5] bpo-24484: Avoid race condition in multiprocessing cleanup (GH-2159) (#...Antoine Pitrou2017-06-131-0/+2
* [3.5] bpo-28994: Fixed errors handling in atexit._run_exitfuncs(). (GH-2034) ...Serhiy Storchaka2017-06-121-0/+3
* Revert "[3.5] 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
* bpo-28556: Updates to typing module (GH-2076) (GH-2088)Mariatta2017-06-101-0/+4
* [3.5] bpo-29406: asyncio SSL contexts leak sockets after calling close with c...Yury Selivanov2017-06-101-0/+4
* Break circular references when closing SSLTransport objects (#981) (#2048)Yury Selivanov2017-06-091-0/+3
* Closing transport during handshake process leaks socket (#480) (#2045)Yury Selivanov2017-06-091-0/+3
* Fix waiter cancellation in asyncio.Lock (#1031) (#2038)Yury Selivanov2017-06-091-0/+3
* bpo-30418: Popen.communicate() always ignore EINVAL (#2002) (#2005)Victor Stinner2017-06-081-0/+3
* bpo-30378: Fix the problem that SysLogHandler can't handle IPv6 addresses (#1...Xiang Zhang2017-06-011-0/+3
* [3.5] bpo-29960 _random.Random corrupted on exception in setstate(). … (#1288)Mariatta2017-05-271-0/+3
* [3.5] bpo-30414: multiprocessing.Queue._feed do not break from main loop on e...Antoine Pitrou2017-05-251-0/+3
* [3.5] Fix typos in multiple `.rst` files (GH-1668) (#1706)delirious-lettuce2017-05-221-1/+1
* bpo-30003: Fix handling escape characters in HZ codec (#1556) (#1718)Xiang Zhang2017-05-221-0/+3
* [3.5] bpo-27945: Fixed various segfaults with dict. (GH-1657) (#1678)Serhiy Storchaka2017-05-201-0/+4
* [3.5] bpo-25794: Fix `type.__setattr__()` for non-interned attribute names. (...Serhiy Storchaka2017-05-201-0/+3
* bpo-30301: Fix AttributeError when using SimpleQueue.empty() (#1601) (#1627)Xiang Zhang2017-05-171-0/+3
* bpo-30357: test_thread now uses threading_cleanup() (#1592) (#1623)Victor Stinner2017-05-171-0/+5
* bpo-30329: Catch Windows error 10022 on shutdown() (#1538) (#1621)Victor Stinner2017-05-161-0/+4
* [3.5] bpo-30375: Correct the stacklevel of regex compiling warnings. (GH-1595...Serhiy Storchaka2017-05-161-0/+4
* bpo-30048: asyncio: fix Task.cancel() was ignored. (GH-1547)INADA Naoki2017-05-121-0/+3
* [3.5] bpo-29243: Fix Makefile with respect to --enable-optimizations (GH-1478...torsava2017-05-091-0/+4
* bpo-29990: Fix range checking in GB18030 decoder (#1495) (#1508)Xiang Zhang2017-05-091-0/+2
* [3.5] Revert bpo-26293 for zipfile breakage. See also bpo-29094. (GH-1484). (...Serhiy Storchaka2017-05-061-0/+2
* [3.5] bpo-30243: Fixed the possibility of a crash in _json. (GH-1420) (#1470)Serhiy Storchaka2017-05-051-0/+4
* bpo-23404: make touch becomes make regen-all (#1405) (#1461) (#1465)Victor Stinner2017-05-051-0/+4
* [3.5] bpo-30185: avoid KeyboardInterrupt tracebacks in forkserver (GH-1319) (...Antoine Pitrou2017-05-041-0/+3
* [3.5] bpo-28556: Routine updates to typing (GH-1366) (#1417)Mariatta2017-05-031-0/+4
* [3.6] bpo-28087: Skip test_asyncore and test_eintr poll failures on macOS (#4...Victor Stinner2017-05-031-0/+4
* Backport bpo-30205 to 3.5 (#1404)Antoine Pitrou2017-05-021-0/+2
* [3.5] bpo-30197: Enhance functions swap_attr() and swap_item() in test.suppor...Serhiy Storchaka2017-04-281-0/+6
* [3.5] bpo-30070: Fixed leaks and crashes in errors handling in the parser mod...Serhiy Storchaka2017-04-191-0/+2
* [3.5] bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() ...Serhiy Storchaka2017-04-191-0/+5