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
/
funcobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-139109: A new tracing JIT compiler frontend for CPython (GH-140310)
Ken Jin
2025-11-13
1
-1/+5
*
gh-139924: Add PyFunction_PYFUNC_EVENT_MODIFY_QUALNAME event for function wat...
Dino Viehland
2025-10-10
1
-0/+2
*
gh-130821: Add type information to error messages for invalid return type (GH...
Semyon Moroz
2025-08-14
1
-2/+3
*
gh-135607: remove null checking of weakref list in dealloc of extension modul...
Xuanteng Huang
2025-06-30
1
-3/+2
*
gh-135755: Move `PyFunction_GET_BUILTINS` to the private API (GH-135938)
Peter Bierma
2025-06-26
1
-1/+1
*
gh-132775: Fix _PyFunctIon_VerifyStateless() (#134900)
Eric Snow
2025-05-29
1
-14/+20
*
gh-132775: Unrevert "Add _PyCode_VerifyStateless()" (gh-133528)
Eric Snow
2025-05-08
1
-0/+54
*
gh-132775: Revert "gh-132775: Add _PyCode_VerifyStateless() (gh-133221)" (#13...
Petr Viktorin
2025-05-06
1
-54/+0
*
gh-132775: Add _PyCode_VerifyStateless() (gh-133221)
Eric Snow
2025-05-05
1
-0/+54
*
gh-132457: make staticmethod and classmethod generic (#132460)
Ivan Kirpichnikov
2025-05-04
1
-2/+12
*
gh-131238: Remove pycore_object_deferred.h from pycore_object.h (#131549)
Victor Stinner
2025-03-21
1
-6/+6
*
GH-131238: More refactoring of core header files (GH-131351)
Mark Shannon
2025-03-17
1
-0/+1
*
gh-128714: Fix function object races in `__annotate__`, `__annotations__` and...
Xuanteng Huang
2025-02-06
1
-44/+87
*
gh-127274: Defer nested methods (#128012)
mpage
2024-12-19
1
-1/+5
*
gh-127582: Make object resurrection thread-safe for free threading. (GH-127612)
Sam Gross
2024-12-05
1
-5/+2
*
gh-115999: Specialize `LOAD_GLOBAL` in free-threaded builds (#126607)
mpage
2024-11-21
1
-0/+2
*
gh-126072: do not add `None` to `co_consts` if there is no docstring (GH-126101)
Xuanteng Huang
2024-10-30
1
-1/+2
*
gh-124218: Avoid refcount contention on builtins module (GH-125847)
Sam Gross
2024-10-24
1
-22/+3
*
gh-124218: Use per-thread reference counting for globals and builtins (#125713)
Sam Gross
2024-10-21
1
-6/+32
*
gh-125017: Fix refleak from GH-125636 (GH-125664)
Zachary Ware
2024-10-17
1
-0/+1
*
gh-125017: Fix crash on premature access to classmethod/staticmethod annotati...
Jelle Zijlstra
2024-10-17
1
-14/+27
*
gh-124218: Use per-thread refcounts for code objects (#125216)
Sam Gross
2024-10-15
1
-3/+5
*
gh-115999: Stop the world when invalidating function versions (#124997)
mpage
2024-10-08
1
-33/+56
*
gh-111178: Fix function signatures in funcobject.c (#124908)
Victor Stinner
2024-10-02
1
-78/+116
*
gh-122229: Add missing `Py_DECREF` in `func_get_annotation_dict` (#122230)
sobolevn
2024-07-24
1
-0/+1
*
gh-119180: Lazily wrap annotations on classmethod and staticmethod (#119864)
Jelle Zijlstra
2024-05-31
1
-1/+99
*
gh-119180: PEP 649: Add __annotate__ attributes (#119209)
Jelle Zijlstra
2024-05-22
1
-3/+61
*
gh-117657: Disable the function/code cache in free-threaded builds (#118301)
mpage
2024-05-03
1
-0/+10
*
gh-117376: Partial implementation of deferred reference counting (#117696)
Sam Gross
2024-04-12
1
-0/+9
*
gh-117045: Add code object to function version cache (#117028)
Guido van Rossum
2024-03-21
1
-53/+90
*
gh-116916: Remove separate next_func_version counter (#116918)
Guido van Rossum
2024-03-18
1
-4/+4
*
gh-114312: Collect stats for unlikely events (GH-114493)
Michael Droettboom
2024-01-25
1
-0/+9
*
gh-112640: Add `kwdefaults` parameter to `types.FunctionType.__new__` (#112641)
Nikita Sobolev
2024-01-11
1
-2/+13
*
gh-111789: Use PyDict_GetItemRef() in Objects/ (GH-111827)
Serhiy Storchaka
2023-11-14
1
-5/+4
*
gh-111999: Add signatures and improve docstrings for builtins (GH-112000)
Serhiy Storchaka
2023-11-13
1
-2/+4
*
gh-81137: deprecate assignment of code object to a function of a mismatched t...
Irit Katriel
2023-11-07
1
-0/+14
*
gh-108082: Use PyErr_FormatUnraisable() (GH-111580)
Serhiy Storchaka
2023-11-02
1
-17/+3
*
gh-89519: Remove classmethod descriptor chaining, deprecated since 3.11 (gh-1...
Raymond Hettinger
2023-10-27
1
-4/+0
*
gh-110964: Remove private _PyArg functions (#110966)
Victor Stinner
2023-10-17
1
-0/+1
*
GH-104584: Fix refleak when tracing through calls (GH-110593)
Brandt Bucher
2023-10-10
1
-1/+1
*
GH-108716: Turn off deep-freezing of code objects. (GH-108722)
Mark Shannon
2023-09-08
1
-6/+3
*
gh-108253: Fix reads of uninitialized memory in funcobject.c (#108383)
Guido van Rossum
2023-08-23
1
-2/+2
*
gh-108253: Fix bug in func version cache (#108296)
Guido van Rossum
2023-08-22
1
-22/+22
*
gh-106581: Project through calls (#108067)
Guido van Rossum
2023-08-17
1
-2/+77
*
GH-84436: Skip refcounting for known immortals (GH-107605)
Brandt Bucher
2023-08-04
1
-2/+2
*
gh-106869: Use new PyMemberDef constant names (#106871)
Victor Stinner
2023-07-25
1
-10/+10
*
gh-106521: Remove _PyObject_LookupAttr() function (GH-106642)
Serhiy Storchaka
2023-07-12
1
-1/+1
*
gh-106303: Use _PyObject_LookupAttr() instead of PyObject_GetAttr() (GH-106304)
Serhiy Storchaka
2023-07-09
1
-10/+5
*
gh-106033: Get rid of PyDict_GetItem in _PyFunction_FromConstructor (GH-106044)
Serhiy Storchaka
2023-06-29
1
-4/+6
*
gh-104600: Make function.__type_params__ writable (#104601)
Jelle Zijlstra
2023-05-18
1
-1/+16
[next]