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
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-40421: Add pyframe.h header file (GH-19755)
Victor Stinner
2020-04-28
13
-33/+41
*
Post 3.9.0a6
Łukasz Langa
2020-04-28
1
-1/+1
*
Merge tag 'v3.9.0a6'
Łukasz Langa
2020-04-28
1
-2/+2
|
\
|
*
Python 3.9.0a6
v3.9.0a6
Łukasz Langa
2020-04-27
1
-2/+2
*
|
bpo-40334: Support CO_FUTURE_BARRY_AS_BDFL in the new parser (GH-19721)
Pablo Galindo
2020-04-27
1
-4/+7
|
/
*
bpo-40334: Improve various PEG-Parser related stuff (GH-19669)
Lysandros Nikolaou
2020-04-23
1
-2/+4
*
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
3
-0/+39
*
bpo-39562: Prevent collision of future and compiler flags (GH-19230)
Batuhan Taşkaya
2020-04-22
2
-13/+19
*
bpo-40302: Replace PY_INT64_T with int64_t (GH-19573)
Victor Stinner
2020-04-17
1
-1/+1
*
bpo-40302: Add pycore_byteswap.h header file (GH-19552)
Victor Stinner
2020-04-17
2
-4/+93
*
bpo-40267: Fix message when last input character produces a SyntaxError (GH-1...
Lysandros Nikolaou
2020-04-15
1
-0/+4
*
bpo-40268: Remove explicit pythread.h includes (#19529)
Victor Stinner
2020-04-15
2
-2/+1
*
bpo-40170: Convert PyObject_IS_GC() macro to a function (GH-19464)
Hai Shi
2020-04-14
2
-4/+12
*
bpo-40268: Move struct _gc_runtime_state to pycore_gc.h (GH-19515)
Victor Stinner
2020-04-14
3
-102/+101
*
bpo-40232: Update PyOS_AfterFork_Child() to use _PyThread_at_fork_reinit() (G...
Dong-hee Na
2020-04-14
3
-3/+7
*
bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509)
Victor Stinner
2020-04-14
2
-2/+3
*
bpo-40268: Include explicitly pycore_interp.h (GH-19505)
Victor Stinner
2020-04-14
3
-5/+6
*
bpo-40241: Add pycore_interp.h header (GH-19499)
Victor Stinner
2020-04-13
2
-165/+184
*
bpo-40268: Add pycore_runtime.h header file (GH-19493)
Victor Stinner
2020-04-13
2
-121/+144
*
bpo-40241: Add pycore_gc.h header file (GH-19494)
Victor Stinner
2020-04-13
3
-56/+77
*
bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492)
Victor Stinner
2020-04-13
2
-0/+11
*
bpo-40246: Report a better error message for invalid string prefixes (GH-19476)
Lysandros Nikolaou
2020-04-12
1
-0/+1
*
bpo-40241: Add PyObject_GC_IsTracked and PyObject_GC_IsFinalized to the publi...
Pablo Galindo
2020-04-11
1
-0/+2
*
bpo-40082: trip_signal() uses the main interpreter (GH-19441)
Victor Stinner
2020-04-08
2
-6/+11
*
bpo-37127: Remove _pending_calls.finishing (GH-19439)
Victor Stinner
2020-04-08
1
-1/+0
*
bpo-40226: PyInterpreterState_Delete() deletes pending calls (GH-19436)
Victor Stinner
2020-04-08
1
-3/+4
*
Remove extraneous ')' in abstract.h (GH-19146)
Jimmy Yang
2020-04-08
1
-1/+1
*
bpo-40170: Remove PyIndex_Check() macro (GH-19428)
Victor Stinner
2020-04-08
1
-6/+0
*
bpo-40170: Add _PyIndex_Check() internal function (GH-19426)
Victor Stinner
2020-04-08
1
-0/+22
*
bpo-40170: PyType_HasFeature() now always calls PyType_GetFlags() (GH-19378)
Victor Stinner
2020-04-07
2
-5/+10
*
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
2
-61/+59
*
bpo-40089: Add _at_fork_reinit() method to locks (GH-19195)
Victor Stinner
2020-04-07
1
-0/+9
*
bpo-39481: Implementation for PEP 585 (#18239)
Guido van Rossum
2020-04-07
2
-0/+15
*
bpo-40170: PyObject_GET_WEAKREFS_LISTPTR() becomes a function (GH-19377)
Victor Stinner
2020-04-06
2
-2/+8
*
bpo-40141: Add line and column information to ast.keyword nodes (GH-19283)
Pablo Galindo
2020-04-01
1
-2/+8
*
bpo-40130: _PyUnicode_AsKind() should not be exported. (GH-19265)
Serhiy Storchaka
2020-04-01
1
-6/+0
*
bpo-40096: Support __attribute__((__noreturn__)) on xlc (GH-19204)
Batuhan Taşkaya
2020-03-29
1
-0/+1
*
bpo-38644: Pass tstate explicitly in signalmodule.c (GH-19184)
Victor Stinner
2020-03-26
1
-0/+2
*
bpo-38644: Add _PySys_Audit() which takes tstate (GH-19180)
Victor Stinner
2020-03-26
2
-1/+28
*
bpo-38410: Properly handle PySys_Audit() failures (GH-16657)
Zackery Spytz
2020-03-26
1
-2/+2
*
bpo-39947: Add PyThreadState_GetID() function (GH-19163)
Victor Stinner
2020-03-25
1
-0/+1
*
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
*
Post 3.9.0a5
Łukasz Langa
2020-03-23
1
-1/+1
*
Python 3.9.0a5
v3.9.0a5
Łukasz Langa
2020-03-23
1
-2/+2
*
bpo-40024: Add PyModule_AddType() helper function (GH-19088)
Dong-hee Na
2020-03-22
1
-0/+4
*
bpo-39946: Remove _PyThreadState_GetFrame (GH-19094)
Victor Stinner
2020-03-20
2
-6/+0
[next]