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
*
gh-92031: Deoptimize Static Code at Finalization (GH-92039)
Dennis Sweeney
2022-05-03
1
-10/+17
*
gh-92154: Expose PyCode_GetCode in the C API (GH-92168)
Ken Jin
2022-05-03
1
-0/+5
*
Fix the closure argument to PyEval_EvalCodeEx. (GH-92175)
larryhastings
2022-05-02
1
-1/+2
*
gh-87390: Add __unpacked__ attribute to types.GenericAlias (#92059)
Jelle Zijlstra
2022-05-02
1
-0/+2
*
gh-90213: Speed up right shifts of negative integers (GH-30277)
Mark Dickinson
2022-05-02
1
-29/+69
*
bpo-36819: Fix crashes in built-in encoders with weird error handlers (GH-28593)
Serhiy Storchaka
2022-05-02
2
-23/+52
*
gh-92114: Improve error message for types with __class_getitem__ = None (GH-9...
Serhiy Storchaka
2022-05-02
1
-1/+2
*
gh-81548: Deprecate octal escape sequences with value larger than 0o377 (GH-9...
Serhiy Storchaka
2022-04-30
2
-10/+48
*
bpo-43224: Implement substitution of unpacked TypeVarTuple in C (GH-31828)
Serhiy Storchaka
2022-04-30
1
-14/+104
*
gh-91603: Speed up isinstance/issubclass on union types (GH-91631)
Yurii Karabas
2022-04-28
2
-74/+15
*
gh-91603: Speed up operator "|" for UnionType (GH-91955)
Serhiy Storchaka
2022-04-28
1
-87/+70
*
gh-91719: Add pycore_opcode.h internal header file (#91906)
Victor Stinner
2022-04-25
3
-4/+6
*
gh-89373: _Py_Dealloc() checks tp_dealloc exception (#32357)
Victor Stinner
2022-04-21
1
-1/+35
*
GH-88116: Document that PyCodeNew is dangerous, and make PyCode_NewEmpty less...
Mark Shannon
2022-04-21
1
-1/+15
*
GH-88116: Use a compact format to represent end line and column offsets. (GH-...
Mark Shannon
2022-04-21
4
-215/+417
*
gh-91636: Don't clear required fields of function objects (GH-91651)
Dennis Sweeney
2022-04-21
1
-3/+11
*
gh-91731: Replace Py_BUILD_ASSERT() with static_assert() (#91730)
Victor Stinner
2022-04-20
2
-3/+7
*
Cast to (destructor) to fix compiler warnings (GH-91711)
Dennis Sweeney
2022-04-20
1
-1/+1
*
gh-91632: Fix generic_alias_iterator to be finalized at exit. (GH-91727)
Dong-hee Na
2022-04-20
2
-2/+6
*
gh-91020: Add `PyBytes_Type.tp_alloc` for subclass (GH-91686)
Inada Naoki
2022-04-20
1
-1/+20
*
gh-90667: Add specializations of Py_DECREF when types are known (GH-30872)
Dennis Sweeney
2022-04-19
6
-35/+61
*
bpo-46712: share more global strings in deepfreeze (gh-32152)
Kumar Aditya
2022-04-19
1
-0/+1
*
bpo-40421: Cleanup PyFrame C API (GH-32417)
Victor Stinner
2022-04-19
1
-1/+1
*
gh-91098: Use Argument Clinic for Object/classobject.c to fix docstrings (#31...
Oleg Iarygin
2022-04-19
2
-114/+168
*
gh-91102: Use Argument Clinic for EncodingMap (#31725)
Oleg Iarygin
2022-04-18
2
-48/+42
*
gh-91576: Speed up iteration of strings (#91574)
Kumar Aditya
2022-04-18
2
-6/+46
*
gh-91118: Fix docstrings that do not honor --without-doc-strings (#31769)
Oleg Iarygin
2022-04-18
3
-7/+9
*
gh-89770: Implement PEP-678 - Exception notes (GH-31317)
Irit Katriel
2022-04-16
1
-43/+80
*
gh-91266: refactor bytearray strip methods (GH-32096)
Pieter Eendebak
2022-04-14
1
-85/+40
*
gh-91502: Add a new API to check if a frame is an entry frame (GH-91503)
Pablo Galindo Salgado
2022-04-13
1
-0/+8
*
gh-91421: Use constant value check during runtime (GH-91422)
Tobias Stoeckmann
2022-04-13
1
-1/+1
*
gh-91117: Ensure integer mod and pow operations use cached small ints (GH-31843)
Dennis Sweeney
2022-04-11
1
-0/+2
*
GH-89480: Document motivation, design and implementation of 3.11 frame stack....
Mark Shannon
2022-04-11
1
-0/+122
*
bpo-45995: add "z" format specifer to coerce negative 0 to zero (GH-30049)
John Belmonte
2022-04-11
2
-6/+13
*
bpo-47120: make POP_JUMP_IF_TRUE/FALSE/NONE/NOT_NONE relative (GH-32400)
Irit Katriel
2022-04-11
1
-2/+12
*
Fix bad grammar and import docstring for split/rsplit (GH-32381)
Raymond Hettinger
2022-04-08
2
-22/+37
*
Add new PyFrame_GetLasti C-API function (GH-32413)
Mark Shannon
2022-04-08
1
-1/+11
*
bpo-47250: Fix refleak from object.__getstate__() (GH-32403)
Dong-hee Na
2022-04-07
1
-1/+0
*
bpo-47177: Replace `f_lasti` with `prev_instr` (GH-32208)
Brandt Bucher
2022-04-07
3
-29/+27
*
bpo-35134: Remove the Include/code.h header file (GH-32385)
Victor Stinner
2022-04-07
1
-1/+0
*
bpo-26579: Add object.__getstate__(). (GH-2821)
Serhiy Storchaka
2022-04-06
5
-145/+172
*
bpo-46721: Optimize set.issuperset() for non-set arguments (GH-31280)
Serhiy Storchaka
2022-04-06
1
-16/+23
*
bpo-43464: Optimize set.intersection() for non-set arguments (GH-31316)
Serhiy Storchaka
2022-04-06
1
-0/+4
*
bpo-47120: make JUMP_NO_INTERRUPT relative (GH-32221)
Irit Katriel
2022-04-05
1
-9/+5
*
bpo-47186: Replace JUMP_IF_NOT_EG_MATCH by CHECK_EG_MATCH + jump (GH-32309)
Irit Katriel
2022-04-05
1
-8/+2
*
no-issue: Add assertion to PyModule_GetName for understanding (GH-32236)
Dong-hee Na
2022-04-02
1
-1/+3
*
bpo-47186: Replace JUMP_IF_NOT_EXC_MATCH by CHECK_EXC_MATCH + jump (GH-32231)
Irit Katriel
2022-04-01
1
-3/+1
*
bpo-46841: Use a `bytes` object for `_co_code_adaptive` (GH-32205)
Brandt Bucher
2022-04-01
1
-2/+2
*
bpo-46841: Avoid unnecessary allocations in code object comparisons (GH-32222)
Brandt Bucher
2022-04-01
1
-13/+13
*
bpo-47009: Streamline list.append for the common case (GH-31864)
Dennis Sweeney
2022-04-01
1
-18/+18
[next]