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
/
Python
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-35134: Move classobject.h to Include/cpython/ (GH-28968)
Victor Stinner
2021-10-15
1
-1/+0
*
bpo-35134: Add Include/cpython/floatobject.h (GH-28957)
Victor Stinner
2021-10-14
1
-0/+1
*
bpo-21736: Set __file__ on frozen stdlib modules. (gh-28656)
Eric Snow
2021-10-14
2
-25/+59
*
bpo-45471: Do not set PyConfig.stdlib_dir in Py_SetPythonHome(). (gh-28954)
Eric Snow
2021-10-14
1
-4/+1
*
bpo-45439: Move _PyObject_VectorcallTstate() to pycore_call.h (GH-28893)
Victor Stinner
2021-10-14
1
-1/+1
*
bpo-45367: Specialize BINARY_MULTIPLY (GH-28727)
Dennis Sweeney
2021-10-14
3
-23/+116
*
Ensure that instruction cases are self-contained (GH-28938)
Brandt Bucher
2021-10-13
1
-6/+6
*
bpo-45440: Require math.h isinf() to build (GH-28894)
Victor Stinner
2021-10-13
1
-13/+0
*
bpo-45434: pyport.h no longer includes <stdlib.h> (GH-28914)
Victor Stinner
2021-10-13
7
-5/+13
*
bpo-45445: Fail if an invalid X-option is provided in the command line (GH-28...
Pablo Galindo Salgado
2021-10-13
1
-0/+48
*
bpo-45434: Mark the PyTokenizer C API as private (GH-28924)
Victor Stinner
2021-10-13
3
-6/+5
*
bpo-45256: Fix cleanup of stolen locals for Python-to-Python calls (GH-28905)
Pablo Galindo Salgado
2021-10-13
1
-10/+24
*
bpo-45434: Remove pystrhex.h header file (GH-28923)
Victor Stinner
2021-10-13
1
-2/+2
*
bpo-45340: Don't create object dictionaries unless actually needed (GH-28802)
Mark Shannon
2021-10-13
3
-119/+112
*
bpo-45434: Move _Py_BEGIN_SUPPRESS_IPH to pycore_fileutils.h (GH-28922)
Victor Stinner
2021-10-13
1
-2/+3
*
pycore_pystate.h no longer redefines PyThreadState_GET() (GH-28921)
Victor Stinner
2021-10-13
6
-11/+17
*
bpo-45434: Convert Py_GETENV() macro to a function (GH-28912)
Victor Stinner
2021-10-13
1
-0/+8
*
Fix format string in _PyImport_LoadDynamicModuleWithSpec() (GH-28863)
Serhiy Storchaka
2021-10-12
1
-1/+1
*
bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)
Victor Stinner
2021-10-12
6
-13/+18
*
bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)
Victor Stinner
2021-10-11
6
-10/+10
*
bpo-45412: Move _Py_SET_53BIT_PRECISION_START to pycore_pymath.h (GH-28882)
Victor Stinner
2021-10-11
2
-5/+5
*
bpo-45412: Remove Py_SET_ERRNO_ON_MATH_ERROR() macro (GH-28820)
Victor Stinner
2021-10-11
1
-2/+3
*
Handle error when PyUnicode_GetLength returns a negative value. (GH-28859)
Dong-hee Na
2021-10-11
1
-0/+3
*
Restore PEP 523 functionality. (GH-28871)
Mark Shannon
2021-10-11
2
-6/+12
*
Fix a leak in _PyImport_LoadDynamicModuleWithSpec() after failing PySys_Audit...
Serhiy Storchaka
2021-10-11
1
-1/+1
*
bpo-29410: Change the default hash algorithm to SipHash13. (GH-28752)
Inada Naoki
2021-10-10
1
-7/+72
*
bpo-45256: Small cleanups for the code that inlines Python-to-Python calls in...
Pablo Galindo Salgado
2021-10-09
1
-11/+22
*
bpo-45256: Remove the usage of the C stack in Python to Python calls (GH-28488)
Pablo Galindo Salgado
2021-10-09
1
-29/+120
*
Fix typos in the Python directory (GH-28767)
Christian Clauss
2021-10-06
7
-11/+11
*
bpo-40116: Add insertion order bit-vector to dict values to allow dicts to sh...
Mark Shannon
2021-10-06
1
-5/+6
*
Normalize jumps in compiler. All forward jumps to use JUMP_FORWARD. (GH-28755)
Mark Shannon
2021-10-06
2
-12/+35
*
bpo-45020: Identify which frozen modules are actually aliases. (gh-28655)
Eric Snow
2021-10-05
3
-14/+92
*
bpo-45324: Capture data in FrozenImporter.find_spec() to use in exec_module()...
Eric Snow
2021-10-05
2
-90/+245
*
bpo-44050: Extension modules can share state when they don't support sub-inte...
Hai Shi
2021-10-05
1
-1/+3
*
bpo-43760: Check for tracing using 'bitwise or' instead of branch in dispatch...
Mark Shannon
2021-10-05
4
-216/+244
*
Fix compiler warning in ceval.c regarding signed comparison (GH-28716)
Pablo Galindo Salgado
2021-10-04
1
-1/+1
*
bpo-45355: More use of sizeof(_Py_CODEUNIT) (GH-28720)
Serhiy Storchaka
2021-10-04
1
-1/+1
*
bpo-45355: Use sizeof(_Py_CODEUNIT) instead of literal 2 for the size of the ...
Serhiy Storchaka
2021-10-03
2
-11/+11
*
Remove trailing spaces. (GH-28706)
Serhiy Storchaka
2021-10-03
2
-2/+2
*
Fix a couple of compiler warnings. (GH-28677)
Mark Shannon
2021-10-01
1
-2/+2
*
bpo-41710: Add private _PyDeadline_Get() function (GH-28674)
Victor Stinner
2021-10-01
3
-40/+77
*
bpo-41710: Fix PY_TIMEOUT_MAX on Windows (GH-28673)
Victor Stinner
2021-10-01
1
-5/+5
*
bpo-41710: PyThread_acquire_lock_timed() uses sem_clockwait() (GH-28662)
Victor Stinner
2021-10-01
1
-6/+33
*
bpo-45020: Add more test cases for frozen modules. (gh-28664)
Eric Snow
2021-10-01
1
-2/+18
*
bpo-41710: PyThread_acquire_lock_timed() clamps the timout (GH-28643)
Victor Stinner
2021-09-30
2
-33/+52
*
bpo-41710: Fix building pytime.c on Windows (GH-28644)
Victor Stinner
2021-09-30
1
-5/+5
*
bpo-41710: Add pytime_add() and pytime_mul() (GH-28642)
Victor Stinner
2021-09-30
1
-99/+96
*
bpo-41710: Add _PyTime_AsTimespec_clamp() (GH-28629)
Victor Stinner
2021-09-30
2
-81/+163
*
bpo-45211: Remember the stdlib dir during startup. (gh-28586)
Eric Snow
2021-09-28
3
-1/+43
*
Do not check isabs() on Windows. (gh-28584)
Eric Snow
2021-09-27
1
-0/+2
[next]