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
/
Include
/
internal
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
bpo-38530: Refactor and improve AttributeError suggestions (GH-25776)
Dennis Sweeney
2021-05-03
1
-0/+2
*
bpo-43916: Move the _PyStructSequence_InitType function to the internal API (...
Pablo Galindo
2021-05-03
1
-0/+21
*
bpo-42725: Render annotations effectless on symbol table with PEP 563 (GH-25583)
Batuhan Taskaya
2021-05-03
1
-1/+1
*
bpo-43667: Fix broken Unicode encoding in non-UTF locales on Solaris (GH-25096)
Jakub KulĂk
2021-04-30
1
-0/+12
*
bpo-43977: Use tp_flags for collection matching (GH-25723)
Mark Shannon
2021-04-30
1
-4/+0
*
bpo-43892: Make match patterns explicit in the AST (GH-25585)
Nick Coghlan
2021-04-29
3
-20/+100
*
bpo-43962: Fix _PyInterpreterState_IDIncref() (GH-25683)
Victor Stinner
2021-04-28
1
-1/+1
*
bpo-41486: Faster bz2/lzma/zlib via new output buffering (GH-21740)
Ma Lin
2021-04-28
1
-0/+317
*
bpo-42609: Check recursion depth in the AST validator and optimizer (GH-23744)
Serhiy Storchaka
2021-04-25
1
-0/+3
*
bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525)
Pablo Galindo
2021-04-23
1
-0/+2
*
bpo-40137: Add pycore_moduleobject.h internal header (GH-25507)
Victor Stinner
2021-04-21
1
-0/+42
*
bpo-38530: Offer suggestions on AttributeError (#16856)
Pablo Galindo
2021-04-14
1
-0/+2
*
bpo-43760: Speed up check for tracing in interpreter dispatch (#25276)
Mark Shannon
2021-04-13
1
-6/+0
*
bpo-43770: Refactor PyType_Ready() function (GH-25336)
Victor Stinner
2021-04-11
1
-0/+4
*
bpo-43798: Add source location attributes to alias (GH-25324)
Matthew Suozzo
2021-04-10
1
-1/+7
*
bpo-43244: Rename pycore_ast.h functions to _PyAST_xxx() (GH-25252)
Victor Stinner
2021-04-07
1
-230/+171
*
bpo-43244: Remove Yield macro from pycore_ast.h (GH-25243)
Victor Stinner
2021-04-07
1
-3/+0
*
bpo-43687: Py_Initialize() creates singletons earlier (GH-25147)
Victor Stinner
2021-04-02
2
-4/+7
*
bpo-43510: Implement PEP 597 opt-in EncodingWarning. (GH-19481)
Inada Naoki
2021-03-29
1
-0/+1
*
bpo-43244: Remove the pyarena.h header (GH-25007)
Victor Stinner
2021-03-24
3
-4/+71
*
bpo-43244: Remove parser_interface.h header file (GH-25001)
Victor Stinner
2021-03-24
1
-0/+31
*
bpo-43244: Add pycore_compile.h header file (GH-25000)
Victor Stinner
2021-03-23
1
-0/+40
*
bpo-43244: Remove ast.h, asdl.h, Python-ast.h headers (GH-24933)
Victor Stinner
2021-03-23
3
-4/+928
*
Revert "bpo-40521: Make dtoa bigint free list per-interpreter (GH-24821)" (GH...
Victor Stinner
2021-03-22
2
-20/+0
*
bpo-43244: Remove symtable.h header file (GH-24910)
Victor Stinner
2021-03-19
1
-0/+125
*
bpo-43244: Remove the PyAST_Validate() function (GH-24911)
Victor Stinner
2021-03-18
1
-0/+2
*
bpo-43244: Add pycore_ast.h header file (GH-24908)
Victor Stinner
2021-03-17
1
-0/+25
*
bpo-43244: Rename pycore_ast.h to pycore_ast_state.h (GH-24907)
Victor Stinner
2021-03-17
2
-4/+4
*
bpo-40521: Make dtoa bigint free list per-interpreter (GH-24821)
junyixie
2021-03-13
2
-0/+20
*
bpo-43356: Allow passing a signal number to interrupt_main() (GH-24755)
Antoine Pitrou
2021-03-11
1
-0/+16
*
bpo-43311: Create GIL autoTSSkey ealier (GH-24819)
Victor Stinner
2021-03-10
1
-1/+4
*
bpo-37146: Move _PyEval_DeactivateOpCache() to the internal C API (GH-24786)
Victor Stinner
2021-03-08
1
-0/+2
*
bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)
Brandt Bucher
2021-02-26
2
-1/+14
*
bpo-42990: Functions inherit current builtins (GH-24564)
Victor Stinner
2021-02-20
1
-1/+4
*
bpo-43268: Pass interp rather than tstate to internal functions (GH-24580)
Victor Stinner
2021-02-19
5
-36/+36
*
bpo-43268: _Py_IsMainInterpreter() now expects interp (GH-24577)
Victor Stinner
2021-02-19
1
-2/+2
*
bpo-43268: Replace _PyThreadState_GET() with _PyInterpreterState_GET() (GH-24...
Victor Stinner
2021-02-19
2
-10/+7
*
bpo-42990: Refactor _PyFrame_New_NoTrack() (GH-24566)
Victor Stinner
2021-02-18
1
-1/+4
*
bpo-42990: Further refactoring of PyEval_ functions. (GH-24368)
Mark Shannon
2021-02-01
1
-6/+5
*
bpo-42990: Introduce 'frame constructor' struct to simplify API for PyEval_Co...
Mark Shannon
2021-01-29
1
-5/+2
*
bpo-42979: Enhance abstract.c assertions checking slot result (GH-24352)
Victor Stinner
2021-01-27
1
-0/+6
*
bpo-42923: _Py_DumpExtensionModules() ignores stdlib ext (GH-24254)
Victor Stinner
2021-01-19
1
-1/+1
*
bpo-42923: Dump extension modules on fatal error (GH-24207)
Victor Stinner
2021-01-18
1
-0/+2
*
bpo-42923: Py_FatalError() avoids fprintf() (GH-24242)
Victor Stinner
2021-01-18
1
-7/+3
*
bpo-41994: Fix refcount issues in Python/import.c (GH-22632)
Serhiy Storchaka
2021-01-12
1
-5/+0
*
bpo-42882: _PyRuntimeState_Init() leaves unicode next_index unchanged (GH-24193)
Victor Stinner
2021-01-12
1
-0/+4
*
bpo-40521: Per-interpreter interned strings (GH-20085)
Victor Stinner
2020-12-26
1
-0/+11
*
bpo-42745: Make the type cache per-interpreter (GH-23947)
Victor Stinner
2020-12-26
3
-1/+26
*
bpo-39465: Fix _PyUnicode_FromId() for subinterpreters (GH-20058)
Victor Stinner
2020-12-25
2
-0/+14
*
bpo-39465: Add pycore_atomic_funcs.h header (GH-20766)
Victor Stinner
2020-12-23
2
-3/+97
[prev]
[next]