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-46841: Use inline cache for `BINARY_SUBSCR`. (GH-31618)
Mark Shannon
2022-03-01
11
-39/+76
*
bpo-46541: remove usage of _Py_IDENTIFIER from _ssl module (GH-31599)
Kumar Aditya
2022-03-01
2
-10/+37
*
bpo-46633: Skip tests on ASAN and/or MSAN builds (GH-31632)
Victor Stinner
2022-03-01
7
-24/+40
*
bpo-46541: Remove usage of _Py_IDENTIFIER from multibytecodec (GH-31475)
Dong-hee Na
2022-03-01
2
-25/+103
*
bpo-46311: Clean up PyLong_FromLong and PyLong_FromLongLong (GH-30496)
Mark Dickinson
2022-03-01
2
-41/+34
*
bpo-46841: Use inline caching for `COMPARE_OP` (GH-31622)
Brandt Bucher
2022-03-01
9
-163/+179
*
compiler: Merge except_table and cnotab (GH-31614)
Inada Naoki
2022-03-01
1
-0/+6
*
Add missing "to" to two tp_flags notes (GH-31624)
Brandt Bucher
2022-03-01
1
-2/+2
*
bpo-46771: Remove two controversial lines from Task.cancel() (GH-31623)
Guido van Rossum
2022-02-28
3
-6/+17
*
bpo-46753: Add the empty tuple to the _PyRuntimeState.global_objects. (gh-31345)
Eric Snow
2022-02-28
8
-199/+213
*
Statistics internals: Make fewer calls to _coerce() when data types are mixed...
Raymond Hettinger
2022-02-28
1
-4/+9
*
bpo-45431: Rename CFrame to _PyCFrame in the C API (GH-31584)
Victor Stinner
2022-02-28
3
-10/+12
*
bpo-46841: Move the cache for `LOAD_GLOBAL` inline. (GH-31575)
Mark Shannon
2022-02-28
10
-232/+284
*
bpo-46567: Add Tcl/Tk build for Windows ARM64 (GH-31574)
Steve Dower
2022-02-28
16
-24/+63
*
bpo-46841: Use inline caching for `UNPACK_SEQUENCE` (GH-31591)
Brandt Bucher
2022-02-28
7
-29/+39
*
bpo-46541: Remove unneeded visits from sqlite3 (GH-31609)
Erlend Egeberg Aasland
2022-02-28
1
-7/+0
*
bpo-46541: Remove unnecessary Py_VISIT (GH-31608)
Dong-hee Na
2022-02-28
2
-6/+0
*
bpo-46786: Make ElementTree write the HTML tags embed, source, track, wbr as ...
Jannis Vajen
2022-02-27
3
-9/+8
*
bpo-46852: Restore test_getformat() test (GH-31601)
Victor Stinner
2022-02-27
1
-3/+11
*
bpo-46857: Fix refleak in OSError INIT_ALIAS() (GH-31594)
Victor Stinner
2022-02-26
3
-18/+7
*
bpo-46748: Fix ctypes test_frozentable() (GH-31600)
Kumar Aditya
2022-02-26
1
-1/+1
*
bpo-46606: os.getgroups() doesn't overallocate (GH-31569)
Victor Stinner
2022-02-26
1
-32/+25
*
[doc] Add a note in howto/logging.rst about "do not log to root logger in lib...
Yuxin Wu
2022-02-26
1
-0/+7
*
Propagate errors (however unlikely) from _Py_Deepfreeze_Init() (GH-31596)
Kumar Aditya
2022-02-26
7
-13/+25
*
Taskgroup tweaks (GH-31559)
Tin Tvrtković
2022-02-26
2
-34/+42
*
bpo-44011: Document ssl_shutdown_timeout added by revisited asyncio SSL imple...
Kumar Aditya
2022-02-26
1
-5/+55
*
bpo-38415: Remove redundant AsyncContextDecorator.__call__ override from _Asy...
Thomas Grainger
2022-02-26
1
-8/+0
*
bpo-45735: Promise the long-time truth that `args=list` works (GH-30982)
Charlie Zhao
2022-02-26
6
-3/+82
*
bpo-46852: Remove the float.__set_format__() method (GH-31585)
Victor Stinner
2022-02-25
7
-214/+15
*
bpo-46816: Remove declarations for non-__STDC__ compilers (GH-31466)
Oleg Iarygin
2022-02-25
2
-15/+0
*
bpo-46712: Share global string identifiers in deepfreeze (GH-31261)
Kumar Aditya
2022-02-25
3
-6/+14
*
bpo-46857: Fix test_embed.test_no_memleak() on Windows (GH-31589)
Victor Stinner
2022-02-25
1
-4/+10
*
bpo-26897: Clarify Popen stdin, stdout, stderr file object docs (GH-30231)
Kumar Aditya
2022-02-25
1
-14/+16
*
bpo-46836: Rename InterpreterFrame to _PyInterpreterFrame (GH-31583)
Victor Stinner
2022-02-25
15
-138/+138
*
bpo-45316: Move _PyArg_Fini() to internal C API (GH-31580)
Victor Stinner
2022-02-25
4
-3/+3
*
bpo-45316: Move private functions to internal C API (GH-31579)
Victor Stinner
2022-02-25
7
-16/+18
*
Update dict/OrderedDict differences with code equivalents. (GH-31563)
Raymond Hettinger
2022-02-25
1
-6/+23
*
bpo-45316: Move private PyDict functions to internal C API (GH-31577)
Victor Stinner
2022-02-25
2
-17/+19
*
bpo-45316: Move private PyCode C API to internal C API (GH-31576)
Victor Stinner
2022-02-25
4
-49/+56
*
bpo-46808: remove NEXT_BLOCK() from compile.c (GH-31448)
Irit Katriel
2022-02-25
2
-63/+73
*
bpo-46841: Use *inline* caching for `BINARY_OP` (GH-31543)
Brandt Bucher
2022-02-25
19
-351/+429
*
bpo-46836: Move PyFrameObject to pycore_frame.h (GH-31530)
Victor Stinner
2022-02-25
5
-49/+58
*
bpo-1635741: Fix winreg reference leaks (GH-31560)
Victor Stinner
2022-02-25
2
-4/+8
*
bpo-46756: Fix authorization check in urllib.request (GH-31353)
Serhiy Storchaka
2022-02-25
3
-8/+30
*
bpo-34429: Noted TemporaryFile behavior on non-Posix/non-Cygwin systems (GH-3...
slateny
2022-02-25
1
-0/+3
*
bpo-46748: Don't import <stdbool.h> in public headers (GH-31553)
Petr Viktorin
2022-02-25
6
-6/+11
*
bpo-46820: Refactor tests for ambiguous end of numerical literal (GH-31494)
Serhiy Storchaka
2022-02-25
1
-89/+25
*
bpo-46606: Remove redundant +1. (GH-31561)
Inada Naoki
2022-02-25
1
-1/+1
*
bpo-46852: Rename float.__set_format__() to float.__setformat__() (GH-31558)
Victor Stinner
2022-02-25
3
-17/+20
*
bpo-46656: Remove Py_NO_NAN macro (GH-31160)
Victor Stinner
2022-02-25
9
-28/+16
[next]