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
*
bpo-41078: Add pycore_list.h internal header file (GH-21057)
Victor Stinner
2020-06-22
1
-1/+0
*
bpo-36346: Make unicodeobject.h C89 compatible (GH-20934)
Inada Naoki
2020-06-17
1
-1/+2
*
bpo-36346: Add Py_DEPRECATED to deprecated unicode APIs (GH-20878)
Inada Naoki
2020-06-17
1
-23/+23
*
bpo-40989: Make _PyTraceMalloc_NewReference() internal (GH-20915)
Victor Stinner
2020-06-16
1
-4/+0
*
bpo-40989: PyObject_INIT() becomes an alias to PyObject_Init() (GH-20901)
Victor Stinner
2020-06-15
1
-36/+3
*
bpo-40939: Remove the old parser (GH-20768)
Pablo Galindo
2020-06-11
1
-4/+0
*
bpo-40910: Export Py_GetArgcArgv() function (GH-20721)
Victor Stinner
2020-06-08
1
-0/+16
*
bpo-40854: Allow overriding sys.platlibdir via PYTHONPLATLIBDIR env-var (GH-2...
Sandro Mani
2020-06-08
1
-0/+1
*
bpo-39583: Remove superfluous "extern C" bits from Include/cpython/*.h (GH-18...
Skip Montanaro
2020-06-01
19
-151/+1
*
bpo-40792: Make the result of PyNumber_Index() always having exact type int. ...
Serhiy Storchaka
2020-05-28
1
-0/+3
*
bpo-39465: Remove _PyUnicode_ClearStaticStrings() from C API (GH-20078)
Victor Stinner
2020-05-13
2
-3/+1
*
bpo-38787: Add PyCFunction_CheckExact() macro for exact type checks (GH-20024)
scoder
2020-05-12
1
-0/+3
*
bpo-40593: Improve syntax errors for invalid characters in source code. (GH-2...
Serhiy Storchaka
2020-05-12
1
-0/+2
*
bpo-40545: Export _PyErr_GetTopmostException() function (GH-19978)
Victor Stinner
2020-05-07
1
-1/+1
*
bpo-38787: C API for module state access from extension methods (PEP 573) (GH...
Petr Viktorin
2020-05-07
2
-0/+33
*
bpo-40453: Add PyConfig._isolated_subinterpreter (GH-19820)
Victor Stinner
2020-05-01
2
-0/+6
*
bpo-40421: Add PyFrame_GetBack() function (GH-19765)
Victor Stinner
2020-04-29
1
-0/+2
*
bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769)
Victor Stinner
2020-04-29
3
-5/+0
*
bpo-40421: Add Include/cpython/code.h header file (GH-19756)
Victor Stinner
2020-04-28
1
-0/+165
*
bpo-40421: Add pyframe.h header file (GH-19755)
Victor Stinner
2020-04-28
4
-10/+7
*
bpo-40334: Rename PyConfig.use_peg to _use_peg_parser (GH-19670)
Victor Stinner
2020-04-23
1
-1/+1
*
bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503)
Pablo Galindo
2020-04-22
1
-0/+4
*
bpo-40170: Convert PyObject_IS_GC() macro to a function (GH-19464)
Hai Shi
2020-04-14
1
-4/+3
*
bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509)
Victor Stinner
2020-04-14
1
-1/+1
*
bpo-40241: Add pycore_gc.h header file (GH-19494)
Victor Stinner
2020-04-13
1
-55/+6
*
bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492)
Victor Stinner
2020-04-13
1
-0/+7
*
bpo-40170: Remove PyIndex_Check() macro (GH-19428)
Victor Stinner
2020-04-08
1
-6/+0
*
bpo-40170: Convert PyObject_CheckBuffer() macro to a function (GH-19376)
Victor Stinner
2020-04-07
1
-3/+1
*
bpo-40170: PyObject_NEW() becomes an alias to PyObject_New() (GH-19379)
Victor Stinner
2020-04-07
1
-0/+50
*
bpo-40170: PyObject_GET_WEAKREFS_LISTPTR() becomes a function (GH-19377)
Victor Stinner
2020-04-06
1
-2/+1
*
bpo-40130: _PyUnicode_AsKind() should not be exported. (GH-19265)
Serhiy Storchaka
2020-04-01
1
-6/+0
*
bpo-38644: Add _PySys_Audit() which takes tstate (GH-19180)
Victor Stinner
2020-03-26
1
-1/+4
*
bpo-38410: Properly handle PySys_Audit() failures (GH-16657)
Zackery Spytz
2020-03-26
1
-2/+2
*
bpo-39947: Add _PyThreadState_GetDict() function (GH-19160)
Victor Stinner
2020-03-25
1
-0/+2
*
bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157)
Victor Stinner
2020-03-25
1
-0/+5
*
bpo-20526: Fix PyThreadState_Clear(): don't decref frame (GH-19120)
Victor Stinner
2020-03-24
1
-0/+1
*
bpo-39946: Remove _PyThreadState_GetFrame (GH-19094)
Victor Stinner
2020-03-20
1
-2/+0
*
Make cpython/abstract.h compatible with C90 (#18481)
Peter Eisentraut
2020-03-14
1
-11/+24
*
Revert "bpo-39087: Add _PyUnicode_GetUTF8Buffer()" (GH-18985)
Inada Naoki
2020-03-14
1
-13/+0
*
bpo-39087: Add _PyUnicode_GetUTF8Buffer() (GH-17659)
Inada Naoki
2020-03-14
1
-6/+13
*
bpo-39947: Add PyInterpreterState_Get() function (GH-18979)
Victor Stinner
2020-03-13
1
-7/+2
*
bpo-39947: Hide implementation detail of trashcan macros (GH-18971)
Victor Stinner
2020-03-13
1
-15/+18
*
bpo-35370: Add _PyEval_SetTrace() function (GH-18975)
Victor Stinner
2020-03-13
2
-1/+9
*
bpo-39947: Move Py_EnterRecursiveCall() to internal C API (GH-18972)
Victor Stinner
2020-03-13
1
-56/+0
*
bpo-38500: Add _PyInterpreterState_SetEvalFrameFunc() (GH-17340)
Victor Stinner
2020-03-12
2
-1/+11
*
bpo-39882: Py_FatalError() logs the function name (GH-18819)
Victor Stinner
2020-03-06
1
-0/+6
*
bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521)
Dong-hee Na
2020-02-17
1
-1/+1
*
bpo-35134: Add Include/cpython/fileutils.h header file (GH-18493)
Victor Stinner
2020-02-12
1
-0/+165
*
bpo-35134: Add Include/cpython/bytesobject.h file (GH-18494)
Victor Stinner
2020-02-12
2
-0/+138
*
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin
2020-02-11
1
-3/+3
[next]