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
/
cpython
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
gh-96512: Move int_max_str_digits setting to PyConfig (#96944)
Gregory P. Smith
2022-10-03
1
-0/+1
*
gh-96670: Raise SyntaxError when parsing NULL bytes (#97594)
Pablo Galindo Salgado
2022-09-27
1
-0/+1
*
GH-91049: Introduce set vectorcall field API for PyFunctionObject (GH-92257)
adphrost
2022-09-15
1
-1/+3
*
gh-96143: Allow Linux perf profiler to see Python calls (GH-96123)
Pablo Galindo Salgado
2022-08-30
1
-0/+1
*
GH-93503: Add thread-specific APIs to set profiling and tracing functions in ...
Pablo Galindo Salgado
2022-08-24
1
-0/+2
*
gh-90928: Statically Initialize the Keywords Tuple in Clinic-Generated Code (...
Eric Snow
2022-08-11
1
-0/+1
*
gh-93274: Expose receiving vectorcall in the Limited API (GH-95717)
Petr Viktorin
2022-08-08
2
-8/+5
*
gh-94673: Add Per-Interpreter tp_subclasses for Static Builtin Types (gh-95301)
Eric Snow
2022-08-05
1
-3/+2
*
gh-94936: C getters: co_varnames, co_cellvars, co_freevars (#95008)
Ken Jin
2022-08-04
1
-0/+6
*
GH-95245: Store object values and dict pointers in single tagged pointer. (GH...
Mark Shannon
2022-08-01
2
-3/+4
*
gh-94673: Add Per-Interpreter tp_weaklist for Static Builtin Types (#95302)
Eric Snow
2022-07-29
1
-1/+1
*
gh-95174: Add pthread stubs for WASI (GH-95234)
Christian Heimes
2022-07-27
2
-0/+91
*
gh-94673: Add Per-Interpreter Storage for Static Builtin Types (#95255)
Eric Snow
2022-07-26
1
-0/+1
*
GH-92678: Expose managed dict clear and visit functions (#95246)
Mark Shannon
2022-07-25
1
-0/+3
*
gh-93382: Sync up `co_code` changes with 3.11 (GH-94227)
Ken Jin
2022-06-24
1
-1/+1
*
gh-87347: Add parenthesis around macro arguments (#93915)
Victor Stinner
2022-06-20
11
-37/+38
*
GH-93516: Speedup line number checks when tracing. (GH-93763)
Mark Shannon
2022-06-20
1
-1/+3
*
GH-93897: Store frame size in code object and de-opt if insufficient space on...
Mark Shannon
2022-06-20
1
-2/+2
*
gh-93937, C API: Move PyFrame_GetBack() to Python.h (#93938)
Victor Stinner
2022-06-19
2
-13/+17
*
gh-77782: Deprecate global configuration variable (#93943)
Victor Stinner
2022-06-17
2
-19/+22
*
gh-74953: Add _PyTime_FromMicrosecondsClamp() function (#93942)
Victor Stinner
2022-06-17
1
-0/+4
*
gh-87347: Add parenthesis around PyXXX_Check() arguments (#92815)
Victor Stinner
2022-06-16
10
-18/+18
*
GH-93516: Store offset of first traceable instruction in code object (GH-93769)
Mark Shannon
2022-06-14
1
-0/+1
*
gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742)
Serhiy Storchaka
2022-06-14
1
-0/+3
*
gh-89653: PEP 670: Macros always cast arguments in cpython/ (#93766)
Victor Stinner
2022-06-13
9
-92/+28
*
Remove ANY_VARARGS() macro from the C API (#93764)
Victor Stinner
2022-06-13
1
-1/+3
*
gh-89653: PEP 670: Convert PyFunction macros (#93765)
Victor Stinner
2022-06-13
1
-16/+39
*
gh-93382: Cache result of `PyCode_GetCode` in codeobject (GH-93383)
Ken Jin
2022-06-03
1
-0/+1
*
gh-92536: Mark PyUnicode_READY() argument as unused (#93011)
Wenzel Jakob
2022-05-23
1
-2/+2
*
gh-89653: Add assertions on PyUnicode_READ() index (#92883)
Victor Stinner
2022-05-17
1
-1/+9
*
gh-89653: PEP 670: Fix PyUnicode_READ() cast (#92872)
Victor Stinner
2022-05-17
1
-1/+2
*
gh-92781: Avoid mixing declarations and code in C API (#92783)
Victor Stinner
2022-05-15
5
-11/+17
*
gh-85858: Remove PyUnicode_InternImmortal() function (#92579)
Victor Stinner
2022-05-13
1
-10/+3
*
gh-89653: Use int type for Unicode kind (#92704)
Victor Stinner
2022-05-13
1
-2/+2
*
gh-89653: PEP 670: Convert PyUnicode_KIND() macro to function (#92705)
Victor Stinner
2022-05-13
1
-1/+15
*
gh-92536: PEP 623: Remove wstr and legacy APIs from Unicode (GH-92537)
Inada Naoki
2022-05-12
1
-219/+14
*
gh-89653: PEP 670: unicodeobject.h uses _Py_CAST() (#92696)
Victor Stinner
2022-05-11
1
-6/+12
*
gh-89653: PEP 670: Convert PyDict_GET_SIZE() macro to function (#92695)
Victor Stinner
2022-05-11
1
-1/+9
*
gh-89653: PEP 670: Use PyObject* type for parameters (#92694)
Victor Stinner
2022-05-11
2
-12/+16
*
gh-89653: Add assertions to unicodeobject.h functions (#92692)
Victor Stinner
2022-05-11
1
-2/+8
*
gh-89653: PEP 670: Limited API doesn't cast arguments (#92654)
Victor Stinner
2022-05-11
3
-3/+13
*
gh-89653: PEP 670: Convert unicodeobject.h macros to functions (#92648)
Victor Stinner
2022-05-11
1
-48/+66
*
gh-89653: PEP 670: Convert PyCell macros to functions (#92653)
Victor Stinner
2022-05-11
1
-2/+17
*
gh-57684: Add -P cmdline option and PYTHONSAFEPATH env var (#31542)
Victor Stinner
2022-05-05
1
-0/+1
*
gh-89653: PEP 670: Convert PyCFunction macros to functions (#92302)
Victor Stinner
2022-05-05
1
-24/+56
*
gh-91321: Add _Py_NULL macro (#92253)
Victor Stinner
2022-05-03
2
-12/+12
*
gh-91320: Fix more old-style cast warnings in C++ (#92247)
Victor Stinner
2022-05-03
2
-16/+17
*
gh-89653: PEP 670: Convert PyBytes macros to functions (#91990)
Victor Stinner
2022-05-03
2
-10/+43
*
gh-92135: Rename _Py_reinterpret_cast() to _Py_CAST() (#92230)
Victor Stinner
2022-05-03
5
-8/+8
*
gh-92154: Expose PyCode_GetCode in the C API (GH-92168)
Ken Jin
2022-05-03
1
-0/+3
[prev]
[next]