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
*
bpo-36707: Document "m" removal from sys.abiflags (GH-14090)
Victor Stinner
2019-06-15
2
-0/+20
*
Fix Windows release build issues (GH-14091)
Steve Dower
2019-06-14
5
-8/+16
*
Document C API changes in What's New in Python 3.8 (GH-14092)
Victor Stinner
2019-06-14
1
-0/+27
*
bpo-35537: Rewrite setsid test for os.posix_spawn (GH-11721)
Victor Stinner
2019-06-14
2
-21/+32
*
bpo-37266: Daemon threads are now denied in subinterpreters (GH-14049)
Victor Stinner
2019-06-14
8
-29/+113
*
bpo-37261: Document sys.unraisablehook corner cases (GH-14059)
Victor Stinner
2019-06-14
5
-23/+30
*
bpo-19865: ctypes.create_unicode_buffer() supports non-BMP strings on Windows...
Zackery Spytz
2019-06-14
3
-1/+20
*
Implement Windows release builds in Azure Pipelines (GH-14065)
Steve Dower
2019-06-14
46
-166/+1691
*
bpo-35998: Avoid TimeoutError in test_asyncio: test_start_tls_server_1() (GH-...
Andrew Svetlov
2019-06-14
2
-18/+20
*
Update concurrent.futures.rst (GH-14061)
Géry Ogam
2019-06-14
1
-6/+8
*
bpo-37278: Fix test_asyncio ProactorLoopCtrlC (GH-14074)
Victor Stinner
2019-06-14
2
-7/+10
*
bpo-37249: add declaration of _PyObject_GetMethod (GH-14015)
Jeroen Demeyer
2019-06-14
3
-7/+3
*
bpo-37269: Correctly optimise conditionals with constant booleans (GH-14071)
Pablo Galindo
2019-06-14
3
-0/+14
*
bpo-37077: Add native thread ID (TID) for AIX (GH-13624)
Michael Felt
2019-06-13
5
-5/+12
*
bpo-36710: Pass explicitly tstate in sysmodule.c (GH-14060)
Victor Stinner
2019-06-13
8
-178/+262
*
bpo-37213: Handle negative line deltas correctly in the peephole optimizer (G...
Pablo Galindo
2019-06-13
6
-4145/+4229
*
bpo-6689: os.path.commonpath raises ValueError for different drives isn't doc...
Makdon
2019-06-13
1
-3/+4
*
bpo-37261: Fix support.catch_unraisable_exception() (GH-14052)
Victor Stinner
2019-06-13
3
-2/+35
*
bpo-37210: Fix pure Python pickle when _pickle is unavailable (GH-14016)
Victor Stinner
2019-06-13
3
-32/+41
*
tbpo-36402: Fix threading.Thread._stop() (GH-14047)
Victor Stinner
2019-06-13
2
-1/+25
*
bpo-37231: optimize calls of special methods (GH-13973)
Jeroen Demeyer
2019-06-13
2
-72/+88
*
bpo-37253: Remove PyAST_obj2mod_ex() function (GH-14020)
Victor Stinner
2019-06-13
3
-12/+0
*
bpo-35070: test_getgrouplist may fail on macOS if too many groups (GH-13071)
Jeffrey Kintscher
2019-06-13
2
-15/+19
*
bpo-37216: update version to 3.9 in mac using document (GH-13966)
Makdon
2019-06-13
1
-2/+2
*
bpo-37257: obmalloc: stop simple arena thrashing (#14039)
Tim Peters
2019-06-13
2
-2/+8
*
Add 3.9 whatsnew file (GH-14040)
Ned Deily
2019-06-13
2
-0/+116
*
bpo-37253: Fix typo in PyCompilerFlags doc (GH-14036)
Victor Stinner
2019-06-13
1
-1/+1
*
bpo-37253: Add _PyCompilerFlags_INIT macro (GH-14018)
Victor Stinner
2019-06-13
8
-29/+15
*
bpo-37253: Document PyCompilerFlags.cf_feature_version (GH-14019)
Victor Stinner
2019-06-13
2
-4/+20
*
bpo-36402: Fix threading._shutdown() race condition (GH-13948)
Victor Stinner
2019-06-12
3
-12/+96
*
bpo-36779: time.tzname returns empty string on Windows if default cod… (GH-...
Paul Monson
2019-06-12
2
-0/+16
*
bpo-37069: regrtest uses sys.unraisablehook (GH-13759)
Victor Stinner
2019-06-12
4
-1/+57
*
bpo-37223, test_io: silence last 'Exception ignored in:' (GH-14029)
Victor Stinner
2019-06-12
1
-0/+5
*
Make asyncio stream sendfile fail on error (was hang) (GH-14025)
Andrew Svetlov
2019-06-12
1
-5/+8
*
bpo-37236: pragma optimize off for _Py_c_quot on Windows arm64 (GH-13983)
Paul Monson
2019-06-12
1
-0/+7
*
bpo-37201: fix test_distutils failures for Windows ARM64 (GH-13902)
Paul Monson
2019-06-12
5
-3/+13
*
bpo-37160: Thread native ID NetBSD support (GH-13835)
David Carlier
2019-06-12
5
-3/+9
*
bpo-35545: Skip `test_asyncio.test_create_connection_ipv6_scope` on AIX (GH-1...
Michael Felt
2019-06-12
1
-0/+2
*
bpo-29505: Fuzz json module, enforce size limit on int(x) fuzz (GH-13991)
Ammar Askar
2019-06-12
10
-1/+171
*
bpo-32625: Updated documentation for EXTENDED_ARG. (GH-13985)
Yao Zuo
2019-06-12
1
-4/+4
*
bpo-26219: Fix compiler warning in _PyCode_InitOpcache() (GH-13997)
Victor Stinner
2019-06-12
1
-1/+1
*
bpo-36918: Fix "Exception ignored in" in test_urllib (GH-13996)
Victor Stinner
2019-06-12
1
-6/+15
*
bpo-35766: compile(): rename feature_version parameter (GH-13994)
Victor Stinner
2019-06-12
4
-10/+16
*
bpo-35766: Change format for feature_version to (major, minor) (GH-13992)
Guido van Rossum
2019-06-12
4
-10/+19
*
bpo-37238: Enable building for Windows using Visual Studio 2019 (GH-13988)
Paul Monson
2019-06-11
2
-1/+2
*
bpo-35766: What's new in the ast and typing modules (#13984)
Guido van Rossum
2019-06-11
1
-0/+46
*
Fix test_posix if RWF_HIPRI is defined but not preadv2. (GH-13980)
Benjamin Peterson
2019-06-11
1
-0/+2
*
closes bpo-33758: Skip test_get_type_hints_modules_forwardref. (GH-13977)
Benjamin Peterson
2019-06-11
1
-2/+2
*
bpo-36607: Eliminate RuntimeError raised by asyncio.all_tasks() (GH-13971)
Andrew Svetlov
2019-06-11
2
-6/+34
*
bpo-37219: Remove erroneous optimization for differencing an empty set (GH-13...
Raymond Hettinger
2019-06-11
3
-8/+7
[next]