FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[Original HTTPS Page]
History for Objects/funcobject.c - python/cpython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python
/
cpython
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
35.3k
Star
75k
Code
Issues
5k+
Pull requests
2.5k
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Commits
Breadcrumbs
History for
cpython
Objects
funcobject.c
on
3.11
User selector
Datepicker
Commit history
Commits on Apr 11, 2023
gh-87864: Use correct function definition syntax in the docs (GH-103312)
Show description for e715da6
miss-islington
and
sobolevn
authored
e715da6
View commit details
Copy full SHA for e715da6
View code at this point
Browse repository at this point
Commits on Feb 7, 2023
[3.11] gh-101072: support default and kw default in PyEval_EvalCodeEx for 3.11+ (GH-101127) (#101636)
Show description for 955ba28
ambv
and
MatthieuDartiailh
authored
955ba28
View commit details
Copy full SHA for 955ba28
View code at this point
Browse repository at this point
Commits on Oct 6, 2022
gh-97943: PyFunction_GetAnnotations should return a borrowed reference. (GH-97949)
Show description for 33cf0a6
miss-islington
and
larryhastings
authored
33cf0a6
View commit details
Copy full SHA for 33cf0a6
View code at this point
Browse repository at this point
Commits on May 2, 2022
Fix the closure argument to PyEval_EvalCodeEx. (GH-92175)
larryhastings
authored
c96da83
View commit details
Copy full SHA for c96da83
View code at this point
Browse repository at this point
Commits on Apr 21, 2022
gh-91636: Don't clear required fields of function objects (GH-91651)
sweeneyde
authored
f2b4e45
View commit details
Copy full SHA for f2b4e45
View code at this point
Browse repository at this point
Commits on Feb 8, 2022
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized global objects. (gh-30928)
Show description for 81c7204
ericsnowcurrently
authored
81c7204
View commit details
Copy full SHA for 81c7204
View code at this point
Browse repository at this point
Commits on Jan 5, 2022
bpo-46236: Fix PyFunction_GetAnnotations() returned tuple. (GH-30409)
Show description for 46e4c25
methane
authored
46e4c25
View commit details
Copy full SHA for 46e4c25
View code at this point
Browse repository at this point
Commits on Nov 23, 2021
bpo-44525: Copy free variables in bytecode to allow calls to inner functions to be specialized (GH-29595)
Show description for 135cabd
markshannon
authored
135cabd
View commit details
Copy full SHA for 135cabd
View code at this point
Browse repository at this point
Commits on Jul 15, 2021
bpo-42073: allow classmethod to wrap other classmethod-like descriptors (#27115)
Show description for b83861f
ambv
and
eriknw
authored
b83861f
View commit details
Copy full SHA for b83861f
View code at this point
Browse repository at this point
Commits on Jul 12, 2021
bpo-44207: Add an internal version number to function objects. (GH-27078)
markshannon
authored
9487a17
View commit details
Copy full SHA for 9487a17
View code at this point
Browse repository at this point
Commits on Jul 7, 2021
bpo-44530: Add co_qualname field to PyCodeObject (GH-26941)
P403n1x87
authored
2f180ce
View commit details
Copy full SHA for 2f180ce
View code at this point
Browse repository at this point
Commits on May 26, 2021
bpo-43693: Clean up the PyCodeObject fields. (GH-26364)
Show description for 6cc800d
ericsnowcurrently
authored
6cc800d
View commit details
Copy full SHA for 6cc800d
View code at this point
Browse repository at this point
Commits on Apr 11, 2021
bpo-43682: Make staticmethod objects callable (GH-25117)
Show description for 553ee27
vstinner
authored
553ee27
View commit details
Copy full SHA for 553ee27
View code at this point
Browse repository at this point
Commits on Apr 9, 2021
bpo-43682: @staticmethod inherits attributes (GH-25268)
Show description for 507a574
vstinner
authored
507a574
View commit details
Copy full SHA for 507a574
View code at this point
Browse repository at this point
Commits on Mar 18, 2021
bpo-43541: Fix PyEval_EvalCodeEx() regression (GH-24918)
Show description for fc980e0
vstinner
authored
fc980e0
View commit details
Copy full SHA for fc980e0
View code at this point
Browse repository at this point
Commits on Feb 20, 2021
bpo-42990: Functions inherit current builtins (GH-24564)
Show description for 46496f9
vstinner
authored
46496f9
View commit details
Copy full SHA for 46496f9
View code at this point
Browse repository at this point
Commits on Feb 18, 2021
bpo-42990: Refactor _PyFrame_New_NoTrack() (GH-24566)
Show description for 44085a3
vstinner
authored
44085a3
View commit details
Copy full SHA for 44085a3
View code at this point
Browse repository at this point
bpo-42990: Add __builtins__ attribute to functions (GH-24559)
Show description for a3c3ffa
vstinner
authored
a3c3ffa
View commit details
Copy full SHA for a3c3ffa
View code at this point
Browse repository at this point
Commits on Feb 1, 2021
bpo-42990: Further refactoring of PyEval_ functions. (GH-24368)
Show description for 0332e56
markshannon
authored
0332e56
View commit details
Copy full SHA for 0332e56
View code at this point
Browse repository at this point
Commits on Jan 29, 2021
bpo-42990: Introduce 'frame constructor' struct to simplify API for PyEval_CodeEval and friends (GH-24298)
Show description for d6c33fb
markshannon
authored
d6c33fb
View commit details
Copy full SHA for d6c33fb
View code at this point
Browse repository at this point
Commits on Nov 25, 2020
bpo-42202: Store func annotations as a tuple (GH-23316)
Show description for 7301979
authored
7301979
View commit details
Copy full SHA for 7301979
View code at this point
Browse repository at this point
Commits on Oct 29, 2020
bpo-42143: Ensure PyFunction_NewWithQualName() can't fail after creating the func object (GH-22953)
Show description for 3505261
Jongy
authored
3505261
View commit details
Copy full SHA for 3505261
View code at this point
Browse repository at this point
Commits on Jun 22, 2020
bpo-41078: Rename pycore_tupleobject.h to pycore_tuple.h (GH-21056)
vstinner
authored
384621c
View commit details
Copy full SHA for 384621c
View code at this point
Browse repository at this point
Commits on Apr 15, 2020
bpo-40268: Remove unused pycore_pymem.h includes (GH-19531)
vstinner
authored
d9ea5ca
View commit details
Copy full SHA for d9ea5ca
View code at this point
Browse repository at this point
bpo-40268: Remove unused structmember.h includes (GH-19530)
Show description for 4a21e57
vstinner
authored
4a21e57
View commit details
Copy full SHA for 4a21e57
View code at this point
Browse repository at this point
Commits on Apr 14, 2020
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
vstinner
authored
e5014be
View commit details
Copy full SHA for e5014be
View code at this point
Browse repository at this point
Commits on Feb 18, 2020
bpo-36347: stop using RESTRICTED constants (GH-12684)
Show description for 24bba8c
jdemeyer
authored
24bba8c
View commit details
Copy full SHA for 24bba8c
View code at this point
Browse repository at this point
Commits on Feb 11, 2020
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Show description for ffd9753
encukou
authored
ffd9753
View commit details
Copy full SHA for ffd9753
View code at this point
Browse repository at this point
Commits on Feb 7, 2020
bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392)
Show description for 58ac700
vstinner
authored
58ac700
View commit details
Copy full SHA for 58ac700
View code at this point
Browse repository at this point
Commits on Aug 24, 2019
bpo-19072: Make @classmethod support chained decorators (GH-8405)
berkerpeksag
authored and
rhettinger
committed
805f8f9
View commit details
Copy full SHA for 805f8f9
View code at this point
Browse repository at this point
Commits on Jun 18, 2019
bpo-37151: remove _PyFunction_FastCallDict (GH-13864)
jdemeyer
authored and
methane
committed
5954334
View commit details
Copy full SHA for 5954334
View code at this point
Browse repository at this point
Commits on May 31, 2019
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464)
Show description for 530f506
jdemeyer
authored and
benjaminp
committed
530f506
View commit details
Copy full SHA for 530f506
View code at this point
Browse repository at this point
Commits on May 30, 2019
bpo-36974: rename _FastCallKeywords -> _Vectorcall (GH-13653)
jdemeyer
authored and
encukou
committed
37788bc
View commit details
Copy full SHA for 37788bc
View code at this point
Browse repository at this point
Commits on May 29, 2019
bpo-36974: implement PEP 590 (GH-13185)
Show description for aacc77f
authored and
encukou
committed
aacc77f
View commit details
Copy full SHA for aacc77f
View code at this point
Browse repository at this point
Commits on May 28, 2019
bpo-36922: implement PEP-590 Py_TPFLAGS_METHOD_DESCRIPTOR (GH-13338)
Show description for eb65e24
authored and
encukou
committed
eb65e24
View commit details
Copy full SHA for eb65e24
View code at this point
Browse repository at this point
Previous
Next
Back
|
FazBrowse Home
|
New Git URL