index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
Commit message (
Expand
)
Author
Age
Files
Lines
*
Update docs and patchlevel for 3.6.1rc1.
v3.6.1rc1
Ned Deily
2017-03-04
2
-7/+7
*
Update pydoc topics for 3.6.0rc1
Ned Deily
2017-03-04
1
-199/+171
*
Refresh Python/importlib.h and Python/importlib_external.h (#464)
Ned Deily
2017-03-04
2
-2/+2
*
[3.6] bpo-28087: Skip test_asyncore and test_eintr poll failures on macOS (#463)
Ned Deily
2017-03-04
3
-0/+9
*
bpo-29572: Update macOS installer build to OpenSSL 1.0.2k (#457) (#459)
Ned Deily
2017-03-04
2
-4/+4
*
bpo-29550: Temporarily skip "make touch" in Mac installer build. (#456) (#458)
Ned Deily
2017-03-04
1
-6/+7
*
[3.6] bpo-27593: Get SCM build info from git instead of hg. (#446) (#454)
Ned Deily
2017-03-04
9
-78/+86
*
Fixes git command (#451) (#452)
Steve Dower
2017-03-04
1
-1/+1
*
bpo-27593: Updates Windows build to use information from git (#262) (#450)
Steve Dower
2017-03-04
3
-18/+18
*
bpo-26213: Document _UNPACK bytecodes and BUILD_MAP changes (GH-440)
Brett Cannon
2017-03-03
1
-2/+53
*
bpo-29572: Update Windows build to OpenSSL 1.0.2k (GH-442)
Zachary Ware
2017-03-03
4
-3/+5
*
bpo-29709: Improve Boolean Operations documentation (#433) (#437)
Mariatta
2017-03-03
1
-2/+2
*
bpo-29455: Mention coverage.py in trace module documentation (GH-435)
Brett Cannon
2017-03-03
1
-0/+6
*
[3.6] bpo-29623: Make PathLike objects work with ConfigParser.read() (#242) (...
Berker Peksag
2017-03-03
4
-9/+31
*
Add Python version since deprecation in base64 methods. (#33) (#429)
Berker Peksag
2017-03-03
3
-6/+25
*
Restore NEWS file after incorrect git automerge
Yury Selivanov
2017-03-03
1
-785/+3
*
getpass: update docstrings (GH-49) (GH-419)
Mariatta
2017-03-03
1
-1/+0
*
bpo-29026: Clarify documentation of time.time (GH-34) (GH-417)
Mariatta
2017-03-03
1
-7/+35
*
bpo-28963: Fix out of bound iteration in asyncio.Future.remove_done_callback/...
Yury Selivanov
2017-03-03
3
-1/+33
*
asyncio: Optimize _get_running_loop() to call getpid() only when there's a loop
Yury Selivanov
2017-03-03
1
-2/+3
*
bpo-29704: Fix asyncio.SubprocessStreamProtocol closing (#405)
Seth M. Larson
2017-03-03
3
-2/+824
*
bpo-29271: Fix Task.current_task and Task.all_tasks to accept None. (#406)
Yury Selivanov
2017-03-03
4
-11/+31
*
bpo-28893: Set __cause__ for errors in async iteration protocol (#407)
Yury Selivanov
2017-03-03
3
-3/+44
*
bpo-29703: asyncio: Fix creating new event loops in child processes. (#404) (...
Yury Selivanov
2017-03-03
4
-2/+36
*
bpo-29683 - Fixes to _PyCode_SetExtra when co_extra->ce->extras is (#402)
Brian Coleman
2017-03-02
2
-10/+17
*
In SSL module version examples, don't use a legacy version. (#381) (#400)
Alex Gaynor
2017-03-02
1
-4/+4
*
bpo-29697: Don't use OpenSSL <1.0.2 fallback on 1.1+ (#397)
Donald Stufft
2017-03-02
1
-2/+2
*
email.compat32-message.rst: Fix typo in the word `message` (GH-379) (GH-380)
Mariatta
2017-03-01
1
-3/+3
*
bpo-29684: Fix minor regression of PyEval_CallObjectWithKeywords. (GH-378)
INADA Naoki
2017-03-01
2
-6/+11
*
Fixed a handful of typos (GH-343) (GH-364)
Mariatta
2017-03-01
4
-7/+7
*
correct documentation for enum.html (GH-358) (GH-367)
Mariatta
2017-03-01
1
-2/+2
*
Disable mention-bot for maintenance branches (GH-365)
Donald Stufft
2017-03-01
1
-0/+3
*
bpo-29661: fix contradiction in timeit.Timer.autorange's docstring (GH-331) (...
Xiang Zhang
2017-02-28
1
-1/+1
*
bpo-29655: Fixed possible reference leaks in `import *`. (#301) (#348)
Berker Peksag
2017-02-27
1
-1/+4
*
bpo-27788 : synchronise platform.py version number (#246) (#341)
Berker Peksag
2017-02-27
1
-1/+1
*
bpo-28598: Support __rmod__ for RHS subclasses of str in % string formatting ...
Martijn Pieters
2017-02-27
3
-3/+21
*
Delete accidentally merged entries from Misc/NEWS (#338)
Berker Peksag
2017-02-27
1
-10/+0
*
Asyncio documentation: remove `self` from method signatures (GH-334) (GH-337)
Mariatta
2017-02-27
1
-3/+3
*
bpo-29662: fix wrong indentation in timeit.Timer's doc (GH-333)
Xiang Zhang
2017-02-27
1
-11/+11
*
bpo-29376: Fix assertion error in threading._DummyThread.is_alive() (GH-330)
Xiang Zhang
2017-02-27
3
-0/+9
*
bpo-26184: import.rst: Improve versionchanged note (GH-325) (GH-326)
Mariatta
2017-02-26
1
-1/+1
*
[3.6] bpo-29110: Fix file object leak in `aifc.open` (#310)
INADA Naoki
2017-02-26
3
-13/+45
*
bpo-28624: Add a test that checks that cwd parameter of Popen() accepts PathL...
Berker Peksag
2017-02-26
4
-3/+21
*
bpo-26184: import.rst: Improve versionchanged note (GH-277) (#320)
Mariatta
2017-02-26
1
-2/+5
*
bpo-28518: Start a transaction implicitly before a DML statement (#245) (#318)
Berker Peksag
2017-02-26
5
-11/+24
*
bpo-29121: Remove outdated documentation about transactions (#313) (#319)
Berker Peksag
2017-02-26
1
-8/+3
*
bpo-22594: Add a link to the regex module in re documentation (GH-241) (GH-316)
Mariatta
2017-02-26
1
-0/+6
*
bpo-29648: import.rst: Add reference to create_module() (GH-290) (GH-314)
Mariatta
2017-02-26
1
-1/+1
*
Backport recent .travis.yml changes (#308)
Berker Peksag
2017-02-26
1
-10/+9
*
bpo-28961: Address my comments from earlier code review (#306)
Berker Peksag
2017-02-26
1
-12/+3
[next]