summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* gh-102799: remove unnecessary calls to sys.exc_info() in tests (#102800)Irit Katriel2023-03-185-124/+124
* Simplify and improve accuracy for subnormals in hypot() (GH-102785)Raymond Hettinger2023-03-171-35/+28
* gh-102781: fix cwd dependence in cases generator (#102782)Carl Meyer2023-03-171-1/+3
* gh-102701: Fix overflow in dictobject.c (GH-102750)Inada Naoki2023-03-173-1/+11
* GH-78530: add support for generators in `asyncio.wait` (#102761)Kumar Aditya2023-03-174-0/+24
* Increase stack reserve size for Windows debug builds to avoid test crashes (G...Steve Dower2023-03-172-2/+3
* gh-102755: Add PyErr_DisplayException(exc) (#102756)Irit Katriel2023-03-1613-78/+76
* Fix outdated note about 'int' rounding or truncating (#102736)Mark Dickinson2023-03-161-4/+3
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (#1...Irit Katriel2023-03-161-9/+10
* gh-99726: Improves correctness of stat results for Windows, and uses faster A...Steve Dower2023-03-1610-82/+446
* gh-102192: remove redundant exception fields from ssl module socket (#102466)Irit Katriel2023-03-162-23/+12
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (#1...Irit Katriel2023-03-161-44/+35
* gh-102737: Un-ignore ceval.c in the CI globals check (gh-102745)Eric Snow2023-03-162-7/+7
* GH-102748: remove legacy support for generator based coroutines from `asyncio...Kumar Aditya2023-03-164-2/+14
* gh-102721: Improve coverage of `_collections_abc._CallableGenericAlias` (#102...Nikita Sobolev2023-03-162-14/+32
* GH-102653: Make recipe docstring show the correct distribution (#102742)Raymond Hettinger2023-03-161-1/+2
* Add comments to `{typing,_collections_abc}._type_repr` about each other (#102...Nikita Sobolev2023-03-162-2/+4
* gh-102594: PyErr_SetObject adds note to exception raised on normalization err...Irit Katriel2023-03-166-5/+96
* gh-94440: Fix issue of ProcessPoolExecutor shutdown hanging (#94468)yonatanp2023-03-164-0/+36
* GH-100112: avoid using iterable coroutines in asyncio internally (#100128)Kumar Aditya2023-03-163-16/+22
* gh-102690: Use Edge as fallback in webbrowser instead of IE (#102691)Jamoo7212023-03-162-4/+9
* gh-102660: Fix Refleaks in import.c (#102744)Eric Snow2023-03-163-28/+28
* gh-102738: remove from cases generator the code related to register instructi...Irit Katriel2023-03-152-300/+234
* Simplify and speed-up math.hypot() and math.dist() (GH-102734)Raymond Hettinger2023-03-151-154/+139
* Fix typo in code comment (#102726)Martin Breuss2023-03-151-1/+1
* Exclude `ceval.c` from the C-analyzer tool (#102735)Alex Waygood2023-03-151-0/+5
* gh-102654: Insert #line directives in generated_cases.c.h (#102669)Guido van Rossum2023-03-153-16/+530
* gh-101100: Documenting --prefix and --exec-prefix. (GH-102695)Julien Palard2023-03-155-8/+24
* gh-102281: Fix potential nullptr dereference + use of uninitialized memory (g...Max Bachmann2023-03-153-2/+10
* gh-102615: Use `list` instead of `tuple` in `repr` of paramspec (#102637)Nikita Sobolev2023-03-153-3/+52
* Remove misformatted exclamation marks in docs (#102694)Tom Levy2023-03-152-3/+3
* gh-101377: improving test_locale_calendar_formatweekday of calendar (#101378)Andre Hora2023-03-152-2/+7
* gh-102560 Add docstrings to asyncio.TaskGroup (#102565)JosephSBoyle2023-03-151-0/+18
* gh-102519: Avoid failing tests due to inaccessible volumes (GH-102706)Steve Dower2023-03-151-6/+11
* gh-102703: Fix typo in modules tutorial documentation (GH-102707)Robert Prater (B. Eng)2023-03-151-1/+1
* gh-101578: mention in what's new in 3.12 that exceptions are now normalized b...Irit Katriel2023-03-141-0/+5
* Rename redundant enum tests so that they run (#102535)JosephSBoyle2023-03-141-3/+2
* gh-102674: Remove _specialization_stats from Lib/opcode.py (#102685)Dong-hee Na2023-03-142-10/+1
* gh-102660: Handle m_copy Specially for the sys and builtins Modules (gh-102661)Eric Snow2023-03-145-4/+44
* gh-102354: change python3 to python in docs examples (#102696)Paul Watson2023-03-145-6/+6
* gh-81057: Add a CI Check for New Unsupported C Global Variables (gh-102506)Eric Snow2023-03-148-54/+90
* GH-94851: check unicode consistency of static strings in debug mode (#102684)Kumar Aditya2023-03-142-0/+665
* gh-100315: clarification to `__slots__` docs. (#102621)T2023-03-141-2/+4
* GH-100227: cleanup initialization of global interned dict (#102682)Kumar Aditya2023-03-141-8/+10
* doc: Remove a duplicate 'versionchanged' in library/asyncio-task (gh-102677)Joongi Kim2023-03-141-3/+0
* gh-102013: Add PyUnstable_GC_VisitObjects (#102014)Jacob Bower2023-03-145-0/+146
* GH-102670: Use sumprod() to simplify, speed up, and improve accuracy of stati...Raymond Hettinger2023-03-143-13/+27
* gh-102627: Replace address pointing toward malicious web page (#102630)Blind4Basics2023-03-131-1/+1
* gh-98831: Use DECREF_INPUTS() more (#102409)Guido van Rossum2023-03-132-57/+38
* gh-101659: Avoid Allocation for Shared Exceptions in the _xxsubinterpreters M...Eric Snow2023-03-131-74/+49