summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* Update docs and patchlevel for 3.6.1 finalv3.6.1Ned Deily2017-03-211-19/+7
* [3.6] bpo-29723: Consistently configure sys.path[0] (#636)Nick Coghlan2017-03-211-0/+36
* Update docs and patchlevel for 3.6.1rc1.v3.6.1rc1Ned Deily2017-03-041-3/+3
* [3.6] bpo-28087: Skip test_asyncore and test_eintr poll failures on macOS (#463)Ned Deily2017-03-041-0/+4
* [3.6] bpo-27593: Get SCM build info from git instead of hg. (#446) (#454)Ned Deily2017-03-041-0/+6
* bpo-29572: Update Windows build to OpenSSL 1.0.2k (GH-442)Zachary Ware2017-03-031-0/+2
* [3.6] bpo-29623: Make PathLike objects work with ConfigParser.read() (#242) (...Berker Peksag2017-03-031-0/+3
* Restore NEWS file after incorrect git automergeYury Selivanov2017-03-031-785/+3
* bpo-28963: Fix out of bound iteration in asyncio.Future.remove_done_callback/...Yury Selivanov2017-03-031-0/+3
* bpo-29704: Fix asyncio.SubprocessStreamProtocol closing (#405)Seth M. Larson2017-03-031-0/+785
* bpo-29271: Fix Task.current_task and Task.all_tasks to accept None. (#406)Yury Selivanov2017-03-031-0/+3
* bpo-28893: Set __cause__ for errors in async iteration protocol (#407)Yury Selivanov2017-03-031-0/+3
* bpo-29703: asyncio: Fix creating new event loops in child processes. (#404) (...Yury Selivanov2017-03-031-0/+3
* bpo-29683 - Fixes to _PyCode_SetExtra when co_extra->ce->extras is (#402)Brian Coleman2017-03-021-0/+3
* bpo-29684: Fix minor regression of PyEval_CallObjectWithKeywords. (GH-378)INADA Naoki2017-03-011-0/+4
* bpo-28598: Support __rmod__ for RHS subclasses of str in % string formatting ...Martijn Pieters2017-02-271-0/+3
* Delete accidentally merged entries from Misc/NEWS (#338)Berker Peksag2017-02-271-10/+0
* bpo-29376: Fix assertion error in threading._DummyThread.is_alive() (GH-330)Xiang Zhang2017-02-271-0/+2
* [3.6] bpo-29110: Fix file object leak in `aifc.open` (#310)INADA Naoki2017-02-261-0/+3
* bpo-28624: Add a test that checks that cwd parameter of Popen() accepts PathL...Berker Peksag2017-02-262-0/+4
* bpo-28518: Start a transaction implicitly before a DML statement (#245) (#318)Berker Peksag2017-02-261-0/+3
* [3.6] bpo-28929: Add to Misc/NEWS (GH-284)Mariatta2017-02-261-0/+2
* bpo-25008: Deprecate smtpd and point to aiosmtpd (#274) (#278)Barry Warsaw2017-02-241-1/+4
* bpo-29607: Fix stack_effect computation for CALL_FUNCTION_EX (GH-219)INADA Naoki2017-02-211-0/+3
* bpo-29532: Altering a kwarg dictionary passed to functools.partial() no longe...Serhiy Storchaka2017-02-211-0/+13
* bpo-29602: fix signed zero handling in complex constructor. (#203) (#206)Mark Dickinson2017-02-201-0/+4
* bpo-29347: Fix possibly dereferencing undefined pointers when creating weakre...Xiang Zhang2017-02-201-0/+3
* [3.6] bpo-29571: Use correct locale encoding in test_re (#149) (#153)Nick Coghlan2017-02-191-0/+5
* bpo-29579: Removes readme.txt from the installer. (#161)Steve Dower2017-02-191-0/+2
* bpo-29521 update Misc/ACKS (#110)Mariatta2017-02-151-0/+1
* bpo-28556: Various updates to typing (#28) (#77)Mariatta2017-02-141-0/+4
* bpo-29438: fixed use-after-free in key sharing dict (#39)INADA Naoki2017-02-131-0/+2
* Fix datetime.fromtimestamp(): check boundsVictor Stinner2017-02-101-0/+3
* Merge 3.5 (fix #29519)Łukasz Langa2017-02-101-0/+3
|\
| * Fix #29519: weakref spewing exceptions during interp finalizationŁukasz Langa2017-02-101-0/+3
* | Merge issue #26355 fix from Python 3.5Nick Coghlan2017-02-092-0/+4
|\ \ | |/
| * Issue #26355: Specify canonical URLs in docs pagesNick Coghlan2017-02-092-0/+4
* | Issue #29319: Prevent RunMainFromImporter overwriting sys.path[0].Steve Dower2017-02-041-0/+2
|\ \ | |/
| * Issue #29319: Prevent RunMainFromImporter overwriting sys.path[0].Steve Dower2017-02-041-0/+2
* | Issue #29326: Ignores blank lines in ._pth files (Patch by Alexey Izbyshev)Steve Dower2017-02-042-0/+3
* | Issue #28164: Correctly handle special console filenames (patch by Eryk Sun)Steve Dower2017-02-041-0/+2
* | Issue #29409: Implement PEP 529 for io.FileIO (Patch by Eryk Sun)Steve Dower2017-02-041-0/+2
* | Issue #29392: Prevent crash when passing invalid arguments into msvcrt module.Steve Dower2017-02-041-0/+2
|\ \ | |/
| * Issue #29392: Prevent crash when passing invalid arguments into msvcrt module.Steve Dower2017-02-041-0/+5
* | Issue #29416: Prevent infinite loop in pathlib.Path.mkdirSteve Dower2017-02-041-0/+2
|\ \ | |/
| * Issue #29416: Prevent infinite loop in pathlib.Path.mkdirSteve Dower2017-02-041-0/+2
* | Issue #29444: Fixed out-of-bounds buffer access in the group() method ofSerhiy Storchaka2017-02-041-0/+3
|\ \ | |/
| * Issue #29444: Fixed out-of-bounds buffer access in the group() method ofSerhiy Storchaka2017-02-041-0/+3
* | Merge 3.5doko@ubuntu.com2017-02-011-1/+1
|\ \ | |/
| * Issue #29169: Fix NEWS entry.doko@ubuntu.com2017-02-011-1/+1