summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* bpo-45434: Convert Py_GETENV() macro to a function (GH-28912)Victor Stinner2021-10-131-0/+8
* Fix format string in _PyImport_LoadDynamicModuleWithSpec() (GH-28863)Serhiy Storchaka2021-10-121-1/+1
* bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)Victor Stinner2021-10-126-13/+18
* bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)Victor Stinner2021-10-116-10/+10
* bpo-45412: Move _Py_SET_53BIT_PRECISION_START to pycore_pymath.h (GH-28882)Victor Stinner2021-10-112-5/+5
* bpo-45412: Remove Py_SET_ERRNO_ON_MATH_ERROR() macro (GH-28820)Victor Stinner2021-10-111-2/+3
* Handle error when PyUnicode_GetLength returns a negative value. (GH-28859)Dong-hee Na2021-10-111-0/+3
* Restore PEP 523 functionality. (GH-28871)Mark Shannon2021-10-112-6/+12
* Fix a leak in _PyImport_LoadDynamicModuleWithSpec() after failing PySys_Audit...Serhiy Storchaka2021-10-111-1/+1
* bpo-29410: Change the default hash algorithm to SipHash13. (GH-28752)Inada Naoki2021-10-101-7/+72
* bpo-45256: Small cleanups for the code that inlines Python-to-Python calls in...Pablo Galindo Salgado2021-10-091-11/+22
* bpo-45256: Remove the usage of the C stack in Python to Python calls (GH-28488)Pablo Galindo Salgado2021-10-091-29/+120
* Fix typos in the Python directory (GH-28767)Christian Clauss2021-10-067-11/+11
* bpo-40116: Add insertion order bit-vector to dict values to allow dicts to sh...Mark Shannon2021-10-061-5/+6
* Normalize jumps in compiler. All forward jumps to use JUMP_FORWARD. (GH-28755)Mark Shannon2021-10-062-12/+35
* bpo-45020: Identify which frozen modules are actually aliases. (gh-28655)Eric Snow2021-10-053-14/+92
* bpo-45324: Capture data in FrozenImporter.find_spec() to use in exec_module()...Eric Snow2021-10-052-90/+245
* bpo-44050: Extension modules can share state when they don't support sub-inte...Hai Shi2021-10-051-1/+3
* bpo-43760: Check for tracing using 'bitwise or' instead of branch in dispatch...Mark Shannon2021-10-054-216/+244
* Fix compiler warning in ceval.c regarding signed comparison (GH-28716)Pablo Galindo Salgado2021-10-041-1/+1
* bpo-45355: More use of sizeof(_Py_CODEUNIT) (GH-28720)Serhiy Storchaka2021-10-041-1/+1
* bpo-45355: Use sizeof(_Py_CODEUNIT) instead of literal 2 for the size of the ...Serhiy Storchaka2021-10-032-11/+11
* Remove trailing spaces. (GH-28706)Serhiy Storchaka2021-10-032-2/+2
* Fix a couple of compiler warnings. (GH-28677)Mark Shannon2021-10-011-2/+2
* bpo-41710: Add private _PyDeadline_Get() function (GH-28674)Victor Stinner2021-10-013-40/+77
* bpo-41710: Fix PY_TIMEOUT_MAX on Windows (GH-28673)Victor Stinner2021-10-011-5/+5
* bpo-41710: PyThread_acquire_lock_timed() uses sem_clockwait() (GH-28662)Victor Stinner2021-10-011-6/+33
* bpo-45020: Add more test cases for frozen modules. (gh-28664)Eric Snow2021-10-011-2/+18
* bpo-41710: PyThread_acquire_lock_timed() clamps the timout (GH-28643)Victor Stinner2021-09-302-33/+52
* bpo-41710: Fix building pytime.c on Windows (GH-28644)Victor Stinner2021-09-301-5/+5
* bpo-41710: Add pytime_add() and pytime_mul() (GH-28642)Victor Stinner2021-09-301-99/+96
* bpo-41710: Add _PyTime_AsTimespec_clamp() (GH-28629)Victor Stinner2021-09-302-81/+163
* bpo-45211: Remember the stdlib dir during startup. (gh-28586)Eric Snow2021-09-283-1/+43
* Do not check isabs() on Windows. (gh-28584)Eric Snow2021-09-271-0/+2
* bpo-45211: Move helpers from getpath.c to internal API. (gh-28550)Eric Snow2021-09-273-17/+100
* bpo-41299: Mark private thread_nt.h functions as static (GH-28553)Victor Stinner2021-09-241-10/+10
* bpo-41299: Fix EnterNonRecursiveMutex() (GH-28548)Victor Stinner2021-09-241-3/+0
* bpo-41299: QueryPerformanceFrequency() cannot fail (GH-28552)Victor Stinner2021-09-241-21/+7
* bpo-45020: Fix some corner cases for frozen module generation. (gh-28538)Eric Snow2021-09-241-2/+2
* bpo-20524: adds better error message for `.format()` (GH-28310)Nikita Sobolev2021-09-241-7/+19
* bpo-21302: time.sleep() uses waitable timer on Windows (GH-28483)Victor Stinner2021-09-221-0/+11
* bpo-45061: Detect refcount bug on empty tuple singleton (GH-28503)Victor Stinner2021-09-211-0/+10
* bpo-24076: Fix reference in sum() introduced by GH-28469 (GH-28493)Pablo Galindo Salgado2021-09-211-1/+2
* bpo-24076: Inline single digit unpacking in the integer fastpath of sum() (GH...scoder2021-09-211-1/+9
* bpo-1514420: Do not attempt to open files with names in <>s when formatting a...Irit Katriel2021-09-201-0/+9
* Clean up initialization __class_getitem__ with Py_GenericAlias. (GH-28450)Serhiy Storchaka2021-09-191-2/+2
* bpo-45020: Freeze os, site, and codecs. (gh-28398)Eric Snow2021-09-171-1/+10
* bpo-45219: Factor dictkey indexing (GH-28389)Mark Shannon2021-09-171-20/+19
* bpo-45107: Make LOAD_METHOD_CLASS safer and faster, clean up comments (GH-28177)Ken Jin2021-09-172-15/+9
* bpo-45203: fix compiler warnings (GH-28357)Ken Jin2021-09-171-0/+1