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
path:
root
/
Objects
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-43977: Use tp_flags for collection matching (GH-25723)
Mark Shannon
2021-04-30
7
-7/+14
*
Two minor fixes for accessing a module's name. (#25658)
larryhastings
2021-04-30
1
-6/+2
*
bpo-43901: Lazy-create an empty annotations dict in all unannotated user clas...
larryhastings
2021-04-30
2
-3/+138
*
bpo-42800: Rename AUDIT_READ to PY_AUDIT_READ (GH-25736)
Steve Dower
2021-04-30
3
-8/+8
*
bpo-42800: add audit hooks for f_code and tb_frame (GH-24182)
Ryan Hileman
2021-04-29
3
-8/+8
*
bpo-43933: Show frame.f_lineno as None, rather than -1, if there is no line n...
Mark Shannon
2021-04-29
1
-1/+7
*
bpo-42739: Don't use sentinels to mark end of line table. (GH-25657)
Mark Shannon
2021-04-29
2
-24/+21
*
bpo-24275: Don't downgrade unicode-only dicts to mixed on lookups (GH-25186)
Hristo Venev
2021-04-29
1
-3/+6
*
bpo-43908: Add Py_TPFLAGS_IMMUTABLETYPE flag (GH-25520)
Erlend Egeberg Aasland
2021-04-28
1
-1/+6
*
bpo-41559: Change PEP 612 implementation to pure Python (#25449)
Ken Jin
2021-04-28
1
-62/+14
*
bpo-43962: Fix _PyInterpreterState_IDIncref() (GH-25683)
Victor Stinner
2021-04-28
1
-3/+9
*
bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525)
Pablo Galindo
2021-04-23
1
-17/+28
*
bpo-43475: Fix worst case collision behavior for NaN instances (GH-25493)
Raymond Hettinger
2021-04-22
2
-3/+3
*
bpo-40137: Add pycore_moduleobject.h internal header (GH-25507)
Victor Stinner
2021-04-21
3
-18/+9
*
bpo-40137: Optimize _PyType_GetModuleByDef() loop (GH-25505)
Victor Stinner
2021-04-21
1
-5/+21
*
bpo-40137: _PyType_GetModuleByDef() doesn't check tp_flags (GH-25504)
Victor Stinner
2021-04-21
1
-15/+14
*
bpo-38530: Properly extend UnboundLocalError from NameError (GH-25444)
Pablo Galindo
2021-04-16
1
-1/+2
*
bpo-38530: Offer suggestions on NameError (GH-25397)
Pablo Galindo
2021-04-14
1
-2/+63
*
bpo-38530: Offer suggestions on AttributeError (#16856)
Pablo Galindo
2021-04-14
2
-12/+112
*
bpo-43770: Cleanup type_ready() (GH-25388)
Victor Stinner
2021-04-13
1
-119/+153
*
bpo-43770: Reorder type_ready() (GH-25373)
Victor Stinner
2021-04-13
1
-48/+56
*
bpo-43682: Make staticmethod objects callable (GH-25117)
Victor Stinner
2021-04-11
1
-1/+8
*
bpo-43770: Refactor PyType_Ready() function (GH-25336)
Victor Stinner
2021-04-11
1
-154/+270
*
bpo-43751: Fix anext() bug where it erroneously returned None (GH-25238)
Dennis Sweeney
2021-04-11
1
-1/+46
*
bpo-43753: Add Py_Is() and Py_IsNone() functions (GH-25227)
Victor Stinner
2021-04-10
1
-0/+27
*
bpo-43770: Refactor type_new() function (GH-25325)
Victor Stinner
2021-04-10
2
-395/+734
*
bpo-43682: @staticmethod inherits attributes (GH-25268)
Victor Stinner
2021-04-09
1
-9/+71
*
bpo-43770: _PyTypes_Init() inits _PyAnextAwaitable_Type (GH-25266)
Victor Stinner
2021-04-08
2
-2/+3
*
bpo-43770: _PyTypes_Init() inits more static types (GH-25265)
Victor Stinner
2021-04-07
1
-0/+23
*
bpo-43770: Sort types in _PyTypes_Init() (GH-25263)
Victor Stinner
2021-04-07
1
-71/+76
*
bpo-43683: Handle generator entry in bytecode (GH-25138)
Mark Shannon
2021-04-06
1
-21/+6
*
bpo-43688: Support the limited C API in debug mode (GH-25131)
Victor Stinner
2021-04-02
1
-0/+17
*
bpo-43687: Py_Initialize() creates singletons earlier (GH-25147)
Victor Stinner
2021-04-02
4
-36/+48
*
bpo-27129: Use instruction offsets, not byte offsets, in bytecode and interna...
Mark Shannon
2021-04-01
3
-13/+22
*
When printing stats, move radix tree info to its own section. (GH-25125)
Tim Peters
2021-04-01
1
-9/+14
*
bpo-43179: Generalise alignment for optimised string routines (GH-24624)
Jessica Clarke
2021-03-31
4
-30/+14
*
bpo-37448: Use radix tree for pymalloc address_in_range(). (GH-14474)
Neil Schemenauer
2021-03-30
1
-5/+336
*
bpo-43510: Implement PEP 597 opt-in EncodingWarning. (GH-19481)
Inada Naoki
2021-03-29
1
-0/+9
*
bpo-43636: Validate the version tag in _PyType_Lookup (GH-25032)
Pablo Galindo
2021-03-27
1
-1/+3
*
bpo-43198: Revert 3dd2157 that removed freeslot tracking. (#25010)
Raymond Hettinger
2021-03-24
1
-1/+15
*
bpo-31861: Fix possible crash in PyAnextAwaitable_New (GH-25005)
Pablo Galindo
2021-03-24
1
-1/+5
*
bpo-43244: Add pycore_compile.h header file (GH-25000)
Victor Stinner
2021-03-23
1
-0/+1
*
bpo-31861: Add aiter and anext to builtins (#23847)
Joshua Bronson
2021-03-23
2
-2/+121
*
bpo-43452: Micro-optimizations to PyType_Lookup (GH-24804)
Dino Viehland
2021-03-20
1
-28/+23
*
bpo-43494: Make some minor changes to lnotab notes (GH-24861)
Skip Montanaro
2021-03-19
1
-6/+6
*
bpo-43541: Fix PyEval_EvalCodeEx() regression (GH-24918)
Victor Stinner
2021-03-18
2
-2/+2
*
bpo-35883: Py_DecodeLocale() escapes invalid Unicode characters (GH-24843)
Victor Stinner
2021-03-17
1
-4/+5
*
bpo-43441: Fix _PyType_ClearCache() for subinterpreters (GH-24822)
junyixie
2021-03-13
1
-5/+10
*
bpo-42128: Add __match_args__ to structseq-based classes (GH-24732)
Pablo Galindo
2021-03-04
1
-0/+34
*
bpo-11717: fix ssize_t redefinition error when targeting 32bit Windows app (G...
Jozef Grajciar
2021-03-01
1
-1/+1
[next]