aboutsummaryrefslogtreecommitdiff
path: root/Python
AgeCommit message (Expand)Author
2021-10-12bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)Victor Stinner
2021-10-12bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)Victor Stinner
2021-10-11bpo-45412: Move _Py_SET_53BIT_PRECISION_START to pycore_pymath.h (GH-28882)Victor Stinner
2021-10-11bpo-45412: Remove Py_SET_ERRNO_ON_MATH_ERROR() macro (GH-28820)Victor Stinner
2021-10-11Handle error when PyUnicode_GetLength returns a negative value. (GH-28859)Dong-hee Na
2021-10-11Restore PEP 523 functionality. (GH-28871)Mark Shannon
2021-10-11Fix a leak in _PyImport_LoadDynamicModuleWithSpec() after failing PySys_Audit...Serhiy Storchaka
2021-10-10bpo-29410: Change the default hash algorithm to SipHash13. (GH-28752)Inada Naoki
2021-10-09bpo-45256: Small cleanups for the code that inlines Python-to-Python calls in...Pablo Galindo Salgado
2021-10-09bpo-45256: Remove the usage of the C stack in Python to Python calls (GH-28488)Pablo Galindo Salgado
2021-10-06Fix typos in the Python directory (GH-28767)Christian Clauss
2021-10-06bpo-40116: Add insertion order bit-vector to dict values to allow dicts to sh...Mark Shannon
2021-10-06Normalize jumps in compiler. All forward jumps to use JUMP_FORWARD. (GH-28755)Mark Shannon
2021-10-05bpo-45020: Identify which frozen modules are actually aliases. (gh-28655)Eric Snow
2021-10-05bpo-45324: Capture data in FrozenImporter.find_spec() to use in exec_module()...Eric Snow
2021-10-05bpo-44050: Extension modules can share state when they don't support sub-inte...Hai Shi
2021-10-05bpo-43760: Check for tracing using 'bitwise or' instead of branch in dispatch...Mark Shannon
2021-10-04Fix compiler warning in ceval.c regarding signed comparison (GH-28716)Pablo Galindo Salgado
2021-10-04bpo-45355: More use of sizeof(_Py_CODEUNIT) (GH-28720)Serhiy Storchaka
2021-10-03bpo-45355: Use sizeof(_Py_CODEUNIT) instead of literal 2 for the size of the ...Serhiy Storchaka
2021-10-03Remove trailing spaces. (GH-28706)Serhiy Storchaka
2021-10-01Fix a couple of compiler warnings. (GH-28677)Mark Shannon
2021-10-01bpo-41710: Add private _PyDeadline_Get() function (GH-28674)Victor Stinner
2021-10-01bpo-41710: Fix PY_TIMEOUT_MAX on Windows (GH-28673)Victor Stinner
2021-10-01bpo-41710: PyThread_acquire_lock_timed() uses sem_clockwait() (GH-28662)Victor Stinner
2021-09-30bpo-45020: Add more test cases for frozen modules. (gh-28664)Eric Snow
2021-09-30bpo-41710: PyThread_acquire_lock_timed() clamps the timout (GH-28643)Victor Stinner
2021-09-30bpo-41710: Fix building pytime.c on Windows (GH-28644)Victor Stinner
2021-09-30bpo-41710: Add pytime_add() and pytime_mul() (GH-28642)Victor Stinner
2021-09-30bpo-41710: Add _PyTime_AsTimespec_clamp() (GH-28629)Victor Stinner
2021-09-28bpo-45211: Remember the stdlib dir during startup. (gh-28586)Eric Snow
2021-09-27Do not check isabs() on Windows. (gh-28584)Eric Snow
2021-09-27bpo-45211: Move helpers from getpath.c to internal API. (gh-28550)Eric Snow
2021-09-25bpo-41299: Mark private thread_nt.h functions as static (GH-28553)Victor Stinner
2021-09-25bpo-41299: Fix EnterNonRecursiveMutex() (GH-28548)Victor Stinner
2021-09-25bpo-41299: QueryPerformanceFrequency() cannot fail (GH-28552)Victor Stinner
2021-09-24bpo-45020: Fix some corner cases for frozen module generation. (gh-28538)Eric Snow
2021-09-24bpo-20524: adds better error message for `.format()` (GH-28310)Nikita Sobolev
2021-09-22bpo-21302: time.sleep() uses waitable timer on Windows (GH-28483)Victor Stinner
2021-09-21bpo-45061: Detect refcount bug on empty tuple singleton (GH-28503)Victor Stinner
2021-09-21bpo-24076: Fix reference in sum() introduced by GH-28469 (GH-28493)Pablo Galindo Salgado
2021-09-21bpo-24076: Inline single digit unpacking in the integer fastpath of sum() (GH...scoder
2021-09-20bpo-1514420: Do not attempt to open files with names in <>s when formatting a...Irit Katriel
2021-09-19Clean up initialization __class_getitem__ with Py_GenericAlias. (GH-28450)Serhiy Storchaka
2021-09-17bpo-45020: Freeze os, site, and codecs. (gh-28398)Eric Snow
2021-09-17bpo-45219: Factor dictkey indexing (GH-28389)Mark Shannon
2021-09-17bpo-45107: Make LOAD_METHOD_CLASS safer and faster, clean up comments (GH-28177)Ken Jin
2021-09-17bpo-45203: fix compiler warnings (GH-28357)Ken Jin
2021-09-16bpo-45020: Drop the frozen .h files from the repo. (gh-28392)Eric Snow
2021-09-15bpo-45020: Revert "Drop the frozen .h files from the repo." (gh-28380)Eric Snow