summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-30394: Fix a socket leak in smtplib.SMTP.__init__() (#1700) (#1790)Stéphane Wirtel2017-05-241-0/+1
* [3.6] bpo-30376: Update outdated WindowObject references (GH-1630) (#1746)Kushal Das2017-05-231-8/+8
* [3.6] call remove_done_callback in finally section (GH-1688) (#1755)Łukasz Langa2017-05-231-1/+2
* Fix spelling mistakes in tkinter.py (#1751)Vijay Kumar2017-05-231-6/+6
* [3.6] bpo-21056: Document return type of next method of csv reader (GH-146) (...Mariatta2017-05-231-2/+4
* [3.6] Add --with-assertions configure flag to enable C assertions(GH-1731) (#...T. Wouters2017-05-233-2/+56
* [3.6] bpo-23894: make lib2to3 recognize f-strings (GH-1733) (#1737)Łukasz Langa2017-05-232-1/+7
* [3.6] bpo-30395 _PyGILState_Reinit deadlock fix (GH-1734) (#1740)Łukasz Langa2017-05-232-0/+5
* [3.6] Make rb'' strings work in lib2to3 (GH-1724) (#1730)Łukasz Langa2017-05-222-7/+37
* [3.6] bpo-30372: Clarify that '__builtins__' is a CPython Implementation deta...Mariatta2017-05-221-9/+9
* bpo-30003: Fix handling escape characters in HZ codec (#1556) (#1719)Xiang Zhang2017-05-223-13/+19
* [3.6] Fix typos in multiple `.rst` files (GH-1668) (#1702)delirious-lettuce2017-05-2118-31/+31
* [3.6] bpo-30415: Add new tests for the fnmatch module. (GH-1684) (#1694)Serhiy Storchaka2017-05-211-9/+55
* bpo-29976: urllib.parse clarify '' in scheme values. (GH-984) (GH-1692)Senthil Kumaran2017-05-211-11/+19
* [3.6] bpo-27945: Fixed various segfaults with dict. (GH-1657) (#1677)Serhiy Storchaka2017-05-204-25/+134
* [3.6] bpo-25794: Fix `type.__setattr__()` for non-interned attribute names. (...Serhiy Storchaka2017-05-203-5/+64
* bpo-27103: regrtest disables -W if -R is used (#1651) (#1656)Victor Stinner2017-05-181-0/+5
* bpo-30387: Fix warning in test_threading (#1634) (#1636)Victor Stinner2017-05-171-3/+5
* tmtotuple(): use time_t for gmtoff (#1276) (#1635)Victor Stinner2017-05-171-3/+3
* Remove unused variable in test_urllibnet. (#1598) (#1600)Senthil Kumaran2017-05-171-1/+3
* bpo-30301: Fix AttributeError when using SimpleQueue.empty() (#1601) (#1628)Xiang Zhang2017-05-173-0/+40
* Fix ModuleNotFoundError typo in import reference (#1610)Dominik Miedziński2017-05-171-1/+1
* bpo-30273: update distutils.sysconfig for venv's created from Python (#1515) ...Victor Stinner2017-05-171-5/+2
* bpo-30357: test_thread now uses threading_cleanup() (#1592) (#1622)Victor Stinner2017-05-173-0/+10
* bpo-30329: Catch Windows error 10022 on shutdown() (#1538) (#1620)Victor Stinner2017-05-163-6/+16
* bpo-29898: Fix incorrect env variable name (GH-1576)Berker Peksag2017-05-162-3/+3
* bpo-30380: Pin the version of Sphinx used to build the docs (GH-1612) (GH-1617)Brett Cannon2017-05-161-2/+4
* [3.6] bpo-30380: Fix Sphinx 1.6.1 warnings. (GH-1613) (#1614)Serhiy Storchaka2017-05-167-14/+13
* [3.6] bpo-30375: Correct the stacklevel of regex compiling warnings. (GH-1595...Serhiy Storchaka2017-05-163-15/+31
* bpo-29651 - Cover edge case of square brackets in urllib docs (#1128) (#1596)Senthil Kumaran2017-05-161-0/+6
* bpo-30242: resolve some undefined behaviours in struct (#1418) (#1586)Xiang Zhang2017-05-151-5/+9
* bpo-30110: fix resource leak in test_asyncio.test_events (#1413) (#1584)Xiang Zhang2017-05-151-1/+3
* bpo-30358: Document sort argument of profile.runctx() (GH-1566)Berker Peksag2017-05-141-2/+2
* [3.6] Move Codecov's configuration file under .github (GH-1494) (GH-1574)Brett Cannon2017-05-131-0/+0
* [3.6] bpo-30178: Indent methods and attributes of MimeType class (GH-1306) (#...Mariatta2017-05-131-43/+43
* [3.6] bpo-30345: Update test_gdb.py and python-gdb.py from master (#1549)Victor Stinner2017-05-123-14/+78
* bpo-30048: asyncio: fix Task.cancel() was ignored. (GH-1546)INADA Naoki2017-05-114-1/+39
* [3.6] bpo-28787: Fix out of tree --with-dtrace builds (GH-135) (#1543)stratakis2017-05-113-0/+5
* bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1480) (#1529)Xiang Zhang2017-05-102-4/+6
* bpo-30320: test_eintr now uses pthread_sigmask() (#1523) (#1524)Victor Stinner2017-05-101-30/+26
* [3.6] bpo-30298: Weaken the condition of deprecation warnings for inline modi...Serhiy Storchaka2017-05-103-21/+56
* [3.6] bpo-29243: Fix Makefile with respect to --enable-optimizations (GH-1478...torsava2017-05-093-7/+12
* bpo-29990: Fix range checking in GB18030 decoder (#1495) (#1507)Xiang Zhang2017-05-093-1/+11
* bpo-30289: remove Misc/python-config.sh when make distclean (#1498) (#1506)Xiang Zhang2017-05-091-1/+2
* [3.6] Revert bpo-26293 for zipfile breakage. See also bpo-29094. (GH-1484). (...Serhiy Storchaka2017-05-062-14/+15
* bpo-30264: ExpatParser closes the source on error (#1451) (#1474)Victor Stinner2017-05-052-17/+40
* [3.6] bpo-30243: Fixed the possibility of a crash in _json. (GH-1420) (#1469)Serhiy Storchaka2017-05-052-66/+24
* [3.6] bpo-23404: make touch becomes make regen-all (#1405) (#1461)Victor Stinner2017-05-049-262/+91
* [3.6] bpo-30185: avoid KeyboardInterrupt tracebacks in forkserver (GH-1319) (...Antoine Pitrou2017-05-042-6/+17
* bpo-30225: Fix is_valid_fd() on macOS Tiger (#1443) (#1449)Victor Stinner2017-05-041-0/+9