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-35134: Add Include/cpython/longobject.h (GH-29044)
Victor Stinner
2021-10-19
3
-130/+124
*
bpo-35134: Split warnings.h and weakrefobject.h (GH-29042)
Victor Stinner
2021-10-18
5
-77/+82
*
bpo-43760: Rename _PyThreadState_DisableTracing() (GH-29032)
Victor Stinner
2021-10-18
1
-2/+2
*
bpo-45020: Default to using frozen modules unless running from source tree. (...
Eric Snow
2021-10-16
1
-0/+1
*
bpo-45440: Remove pymath.c fallbacks (GH-28977)
Victor Stinner
2021-10-15
1
-18/+0
*
bpo-30459: Use (void) in macros setting variables (GH-28982)
Victor Stinner
2021-10-15
2
-4/+4
*
bpo-43760: Add PyThreadState_EnterTracing() (GH-28542)
Victor Stinner
2021-10-15
2
-1/+25
*
bpo-45482: Rename namespaceobject.h to pycore_namespace.h (GH-28975)
Victor Stinner
2021-10-15
3
-20/+20
*
bpo-45434: Remove Include/eval.h header file (GH-28973)
Victor Stinner
2021-10-15
4
-29/+13
*
bpo-35081: Move interpreteridobject.h to Include/internal/ (GH-28969)
Victor Stinner
2021-10-15
3
-21/+15
*
bpo-35134: Move classobject.h to Include/cpython/ (GH-28968)
Victor Stinner
2021-10-15
5
-18/+15
*
bpo-35134: Move Include/cellobject.h to Include/cpython/ (GH-28964)
Victor Stinner
2021-10-15
2
-2/+4
*
po-35134: Move Include/funcobject.h to Include/cpython/ (GH-28958)
Victor Stinner
2021-10-14
2
-4/+2
*
bpo-45434: Remove useless space in includes (GH-28963)
Victor Stinner
2021-10-14
24
-28/+26
*
bpo-45434: Limited Python.h no longer includes stdio.h (GH-28960)
Victor Stinner
2021-10-14
1
-7/+4
*
bpo-45474: Fix the limited C API of marshal.h (GH-28956)
Victor Stinner
2021-10-14
1
-6/+7
*
bpo-35134: Add Include/cpython/floatobject.h (GH-28957)
Victor Stinner
2021-10-14
3
-79/+104
*
bpo-45439: Move _PyObject_VectorcallTstate() to pycore_call.h (GH-28893)
Victor Stinner
2021-10-14
2
-93/+82
*
bpo-45467: Fix IncrementalDecoder and StreamReader in the "raw-unicode-escape...
Serhiy Storchaka
2021-10-14
1
-0/+10
*
bpo-45367: Specialize BINARY_MULTIPLY (GH-28727)
Dennis Sweeney
2021-10-14
3
-28/+33
*
bpo-45461: Fix IncrementalDecoder and StreamReader in the "unicode-escape" co...
Serhiy Storchaka
2021-10-14
1
-1/+9
*
bpo-45440: Require math.h isinf() to build (GH-28894)
Victor Stinner
2021-10-13
2
-71/+12
*
bpo-45434: pyport.h no longer includes <stdlib.h> (GH-28914)
Victor Stinner
2021-10-13
3
-3/+5
*
bpo-45434: Remove pystrhex.h header file (GH-28923)
Victor Stinner
2021-10-13
2
-22/+36
*
bpo-45340: Don't create object dictionaries unless actually needed (GH-28802)
Mark Shannon
2021-10-13
5
-10/+25
*
bpo-45434: Move _Py_BEGIN_SUPPRESS_IPH to pycore_fileutils.h (GH-28922)
Victor Stinner
2021-10-13
2
-20/+19
*
pycore_pystate.h no longer redefines PyThreadState_GET() (GH-28921)
Victor Stinner
2021-10-13
4
-19/+10
*
bpo-45434: bytearrayobject.h no longer includes <stdarg.h> (GH-28913)
Victor Stinner
2021-10-13
4
-5/+3
*
bpo-45434: Convert Py_GETENV() macro to a function (GH-28912)
Victor Stinner
2021-10-13
1
-1/+1
*
bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)
Victor Stinner
2021-10-12
2
-9/+7
*
bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)
Victor Stinner
2021-10-11
2
-2/+2
*
bpo-45439: _PyObject_Call() only checks tp_vectorcall_offset once (GH-28890)
Victor Stinner
2021-10-11
1
-0/+1
*
bpo-45412: Move copysign() define to pycore_pymath.h (GH-28889)
Victor Stinner
2021-10-11
2
-52/+49
*
bpo-41123: Remove Py_UNICODE_COPY() and Py_UNICODE_FILL() (GH-28887)
Victor Stinner
2021-10-11
1
-13/+0
*
bpo-45434: Python.h no longer includes <stdlib.h> (GH-28888)
Victor Stinner
2021-10-11
1
-1/+0
*
bpo-45412: Move _Py_SET_53BIT_PRECISION_START to pycore_pymath.h (GH-28882)
Victor Stinner
2021-10-11
3
-85/+108
*
bpo-45412: Update _Py_ADJUST_ERANGE1() comment (GH-28884)
Victor Stinner
2021-10-11
1
-2/+9
*
bpo-45434: Cleanup Python.h header file (GH-28883)
Victor Stinner
2021-10-11
2
-52/+39
*
bpo-45412: Remove Py_SET_ERRNO_ON_MATH_ERROR() macro (GH-28820)
Victor Stinner
2021-10-11
3
-109/+73
*
Restore PEP 523 functionality. (GH-28871)
Mark Shannon
2021-10-11
1
-0/+3
*
bpo-29410: Change the default hash algorithm to SipHash13. (GH-28752)
Inada Naoki
2021-10-10
1
-4/+4
*
bpo-45256: Remove the usage of the C stack in Python to Python calls (GH-28488)
Pablo Galindo Salgado
2021-10-09
2
-0/+3
*
Fix typos in the Include directory (GH-28745)
Christian Clauss
2021-10-06
7
-8/+8
*
bpo-40116: Add insertion order bit-vector to dict values to allow dicts to sh...
Mark Shannon
2021-10-06
2
-1/+10
*
bpo-45020: Identify which frozen modules are actually aliases. (gh-28655)
Eric Snow
2021-10-05
1
-0/+7
*
Post 3.11.0a1
Pablo Galindo
2021-10-05
1
-1/+1
*
Python 3.11.0a1
v3.11.0a1
Pablo Galindo
2021-10-05
1
-2/+2
*
bpo-43760: Check for tracing using 'bitwise or' instead of branch in dispatch...
Mark Shannon
2021-10-05
1
-0/+1
*
bpo-41710: Add private _PyDeadline_Get() function (GH-28674)
Victor Stinner
2021-10-01
1
-0/+16
*
bpo-41710: Fix PY_TIMEOUT_MAX on Windows (GH-28673)
Victor Stinner
2021-10-01
1
-5/+5
[next]