summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* [3.5] bpo-30709: Improve code example in Descriptor HowTo doc (GH-2339) (GH-2...Mariatta2017-06-231-3/+3
* [3.5] bpo-30619: Clarify typing.Union documentation (GH-2326) (GH-2338)Mariatta2017-06-231-1/+1
* Add "Misc/NEWS.d" directory tree for "blurb". GH-2330larryhastings2017-06-2211-0/+11
* bpo-30694: Upgrade Modules/expat/ to libexpat 2.2.1 (#2300) (#2314)Victor Stinner2017-06-219-158/+887
* [3.5] bpo-29755: Fixed the lgettext() family of functions in the gettext modu...Serhiy Storchaka2017-06-204-107/+229
* 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-204-13/+46
* [3.5] bpo-29887: Test normalization now fails if download fails (GH-905) (#2272)Mariatta2017-06-201-4/+12
* bpo-30687: Fixes build scripts to find msbuild.exe and stop relying on vcvars...Steve Dower2017-06-1910-95/+135
* [3.5] bpo-30383: Backport regrtest and test_regrtest enhancements from master...Victor Stinner2017-06-192-44/+636
* bpo-30176: Add missing curses cell attributes constants (#2277)Xiang Zhang2017-06-192-9/+47
* [3.5] bpo-30540, bpo-30523: Add --matchfile and --list-cases options to regrt...Victor Stinner2017-06-163-34/+113
* Revert "bpo-30673: test.bat: add -t option (timeout) (#2211) (#2226)" (#2247)Victor Stinner2017-06-161-11/+2
* [email] bpo-29478: Fix passing max_line_length=None from Compat32 policy (GH-...Mariatta2017-06-164-2/+17
* bpo-30656: Fix Python C API Module Objects documentation (GH-2170) (GH-2231)Mariatta2017-06-161-1/+1
* Fix ref cycles in TestCase.assertRaises() (#193) (#2228)Victor Stinner2017-06-153-22/+46
* bpo-30673: test.bat: add -t option (timeout) (#2211) (#2226)Victor Stinner2017-06-151-2/+11
* bpo-30675: Fix multiprocessing code in regrtest (#2220)Victor Stinner2017-06-151-47/+63
* [3.5] bpo-30626: Fix error handling in PyImport_Import(). (GH-2103) (#2222)Serhiy Storchaka2017-06-151-2/+6
* bpo-30149: Fix partialmethod without explicit self parameter (#1308) (#1663)Dong-hee Na2017-06-153-4/+48
* [3.5] bpo-29931 fix __lt__ check in ipaddress.ip_interface for both v4 and v6...Serhiy Storchaka2017-06-153-10/+36
* [3.5] bpo-30650: Fixed a syntax error: missed right parentheses (GH-2154) (#2...Serhiy Storchaka2017-06-151-1/+1
* bpo-29591: Upgrade Modules/expat to libexpat 2.2 (#2164) (#2201)Victor Stinner2017-06-1514-476/+527
* bpo-30231: Remove skipped test_imaplib tests (#1419) (#2193)Victor Stinner2017-06-141-17/+0
* bpo-30659 : Use ** for kwargs in namedtuple._replace() signature (GH-2173) (G...Mariatta2017-06-141-1/+1
* Fix trivial typo in Python Setup documentation (GH-2185) (GH-2189)csabella2017-06-141-1/+1
* [3.5] bpo-24484: Avoid race condition in multiprocessing cleanup (GH-2159) (#...Antoine Pitrou2017-06-133-13/+86
* [3.5] bpo-29514: Check magic number for bugfix releases (#2158)Nick Coghlan2017-06-131-0/+44
* [3.5] Mention how to disable signal fd wakeup (GH-2140) (#2150)Antoine Pitrou2017-06-131-2/+4
* bpo-6519: Improve Python Input Output Tutorial (GH-2143) (GH-2146)Mariatta2017-06-131-21/+29
* bpo-30217: add the operators ~ and | to the index (GH-1502) (GH-2138)Marco Buttu2017-06-121-0/+2
* [3.5] 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-2119)Mariatta2017-06-121-0/+1
* [3.5] Use Travis to make sure all generated files are up to date (GH-2080) (G...Zachary Ware2017-06-114-135/+144
* Revert "[3.5] 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-115-0/+32
* bpo-28556: Updates to typing module (GH-2076) (GH-2088)Mariatta2017-06-103-5/+99
* [3.5] bpo-27425: Be more explicit in .gitattributes (GH-840) (GH-2084)Zachary Ware2017-06-1033-2322/+2355
* bpo-25409: Clarify fnmatch and fnmatchcase documentation (GH-1535) (GH-2066)Mariatta2017-06-101-4/+4
* [3.5] bpo-29406: asyncio SSL contexts leak sockets after calling close with c...Yury Selivanov2017-06-103-1/+61
* [3.5] Fix TypeError is asyncio/proactor_events (GH-993) (#2060)Yury Selivanov2017-06-101-2/+3
* [3.5] bpo-30417: Disable `cpu` resource on AppVeyor (GH-1951)Zachary Ware2017-06-101-1/+1
* [3.5] bpo-30335: Add deprecation alias entry for assertNotRegexpMatches (GH-1...Mariatta2017-06-101-5/+10
* [3.5] Make codecov config on master the only config used (GH-2041) (GH-2053)Brett Cannon2017-06-101-0/+1
* Break circular references when closing SSLTransport objects (#981) (#2048)Yury Selivanov2017-06-092-4/+9
* Closing transport during handshake process leaks socket (#480) (#2045)Yury Selivanov2017-06-093-2/+23
* [3.5] Clarify what --enable-optimizations does (GH-1847) (GH-2040)Brett Cannon2017-06-092-18/+6
* Fix waiter cancellation in asyncio.Lock (#1031) (#2038)Yury Selivanov2017-06-093-5/+37
* bpo-24755: Document asyncio.wrap_future (GH-603) (GH-2020)Mariatta2017-06-091-0/+5
* bpo-30418: Popen.communicate() always ignore EINVAL (#2002) (#2005)Victor Stinner2017-06-082-6/+11