summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* gh-107910: Remove not needing newline in error message (GH-107928)Joon Hwan 김준환2023-08-141-2/+2
* gh-107880: Teach Argument Clinic to clone __init__ and __new__ methods (#107885)Erlend E. Aasland2023-08-131-0/+22
* gh-107883: Argument Clinic: Handle full module/class path in Function.fulldis...Erlend E. Aasland2023-08-121-0/+54
* gh-101162: Forbid using issubclass() with GenericAlias as the 1st arg (GH-103...Nikita Sobolev2023-08-111-0/+16
* gh-91051: fix segfault when using all 8 type watchers (#107853)Carl Meyer2023-08-111-0/+12
* gh-106844: Fix issues in _winapi.LCMapStringEx (GH-107832)Serhiy Storchaka2023-08-111-0/+1
* gh-107782: Pydoc: fall back to __text_signature__ if inspect.signature() fail...Serhiy Storchaka2023-08-112-40/+92
* gh-106558: break ref cycles through exceptions in multiprocessing manager (#...Andrew Geng2023-08-112-2/+46
* Extend _sqrtprod() to cover the full range of inputs. Add tests. (GH-107855)Raymond Hettinger2023-08-112-6/+97
* gh-84805: Autogenerate signature for METH_NOARGS and METH_O extension functio...Serhiy Storchaka2023-08-113-1/+131
* gh-107810: Improve DeprecationWarning for metaclasses with custom tp_new (GH-...Marc Mueller2023-08-101-1/+1
* gh-107838: In dataclasses, improve error message when a non-default field fol...Eric V. Smith2023-08-102-7/+7
* GH-106485: Handle dict subclasses correctly when dematerializing `__dict__` (...Mark Shannon2023-08-101-0/+121
* GH-107774: Add missing audit event for PEP 669 (GH-107775)Mark Shannon2023-08-102-0/+24
* gh-95065: Argument Clinic: Add functional tests of deprecated positionals (#1...Erlend E. Aasland2023-08-102-1161/+103
* gh-107409: set `__wrapped__` attribute in `reprlib.recursive_repr` (#107410)denballakh2023-08-102-0/+10
* GH-106485: Dematerialize instance dictionaries when possible (GH-106539)Brandt Bucher2023-08-091-2/+6
* GH-105848: Simplify the arrangement of CALL's stack (GH-107788)Brandt Bucher2023-08-095-34/+35
* gh-95065: Produce nicer deprecation messages in Argument Clinic (#107808)Erlend E. Aasland2023-08-091-1/+192
* gh-104683: Argument Clinic: Params now render their own docstrings (#107790)Erlend E. Aasland2023-08-091-2/+10
* gh-104683: Remove unused variables from `Tools/clinic` and tests for `Tools/c...Alex Waygood2023-08-091-7/+2
* GH-107724: Fix the signature of `PY_THROW` callback functions. (GH-107725)Mark Shannon2023-08-091-0/+32
* Future-proof helper function with zero handling. (GH-107798)Raymond Hettinger2023-08-091-0/+2
* gh-106052: Fix bug in the matching of possessive quantifiers (gh-106515)Serhiy Storchaka2023-08-092-0/+19
* gh-104683: Add --exclude option to Argument Clinic CLI (#107770)Erlend E. Aasland2023-08-081-0/+29
* GH-107596: Specialize str[int] (GH-107597)Brandt Bucher2023-08-081-0/+1
* Minor accuracy improvement for statistics.correlation() (GH-107781)Raymond Hettinger2023-08-081-1/+9
* gh-105699: Re-enable the Multiple-Interpreters Stress Tests (gh-107572)Eric Snow2023-08-081-1/+0
* gh-106368: Argument clinic: add tests for more failure paths (#107731)Alex Waygood2023-08-081-14/+94
* gh-95065: Argument Clinic: Add comment to preprocessor warning code (#107766)Erlend E. Aasland2023-08-081-9/+18
* gh-95065: Make Argument Clinic append deprecation warnings to docstrings (#10...Erlend E. Aasland2023-08-081-18/+57
* gh-107630: Fix Remaining Subinterpreters Crashes on Py_TRACE_REFS Builds (gh-...Eric Snow2023-08-071-0/+6
* gh-107735: Move just added C API tests to better place (GH-107743)Serhiy Storchaka2023-08-071-40/+40
* gh-107735: Add C API tests for PySys_GetObject() and PySys_SetObject() (GH-10...Serhiy Storchaka2023-08-071-0/+43
* gh-107178: Add the C API tests for the Abstract Objects Layer (GH-107179)Serhiy Storchaka2023-08-075-134/+1138
* gh-107715: Escape class name in regular expression (GH-107716)Gertjan van Zwieten2023-08-071-1/+1
* gh-106566: Optimize (?!) in regular expressions (GH-106567)Serhiy Storchaka2023-08-072-1/+6
* gh-100814: Fix exception for invalid callable value of Tkinter image option (...Serhiy Storchaka2023-08-072-4/+16
* gh-95065: Argument Clinic: Pretty-print long C strings in generated code (#10...Erlend E. Aasland2023-08-071-54/+169
* gh-107710: Speed up `logging.getHandlerNames` function (#107711)Nikita Sobolev2023-08-071-2/+1
* gh-107713: Reduce usage of mocks in `test_clinic.py` (#107714)Alex Waygood2023-08-071-87/+19
* gh-85160: Reduce memory usage of `singledispatchmethod` (#107706)Alex Waygood2023-08-071-5/+5
* gh-95065: Add Argument Clinic support for deprecating positional use of param...Erlend E. Aasland2023-08-072-1/+905
* gh-104496: Use correct Tcl or Tk version in Tkinter tests (GH-107688)Serhiy Storchaka2023-08-077-39/+30
* gh-85160: improve performance of `functools.singledispatchmethod` (#107148)Pieter Eendebak2023-08-062-2/+87
* gh-104683: Improve consistency and test coverage of argument-clinic `__repr__...Alex Waygood2023-08-051-3/+91
* GH-106684: raise `ResourceWarning` when `asyncio.StreamWriter` is not closed ...Kumar Aditya2023-08-052-0/+29
* GH-70303: Emit FutureWarning when pathlib glob pattern ends with `**` (GH-105...Barney Gale2023-08-042-3/+21
* gh-106368: Argument clinic: improve coverage for `self.valid_line()` calls (#...Alex Waygood2023-08-041-0/+32
* gh-106812: Refactor cases_generator to allow uops with array stack effects (#...Guido van Rossum2023-08-041-77/+81