summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Fix possible NULL pointer dereference in _PyThread_CurrentFrames (GH-96584)Kumar Aditya2022-09-092-1/+7
* gh-96364: Fix text signatures of `__getitem__` for `list` and `dict` (GH-96365)Nikita Sobolev2022-09-093-2/+5
* gh-96624: Fix test_dotted_but_module_not_loaded in testpatch.py (GH-96691)Dennis Sweeney2022-09-092-1/+2
* GH-46412: More efficient bool() for ndbm/_gdbmmodule (#96692)Guido van Rossum2022-09-095-0/+91
* gh-96684: Silently suppress COM security errors in _wmi module (GH-96690)Steve Dower2022-09-082-4/+18
* gh-96465: Clear fractions hash lru_cache under refleak testing (GH-96689)Zachary Ware2022-09-081-0/+7
* gh-92734: Add indentation feature to reprlib.Repr (GH-92735)finefoot2022-09-084-5/+421
* GH-96636: Remove all uses of NOTRACE_DISPATCH (GH-96643)Mark Shannon2022-09-083-62/+105
* gh-96352: Set AttributeError context in _PyObject_GenericGetAttrWithDict (#96...philg3142022-09-083-0/+9
* gh-96143: Clear instruction cache after mprotect call (#96476)Pablo Galindo Salgado2022-09-081-4/+23
* gh-96652: Fix faulthandler chained signal without sigaction() (#96666)Victor Stinner2022-09-082-1/+4
* gh-96653: Remove duplicate CALL_STAT_INC(inlined_py_calls) in BINARY_SUBSCR_G...Itamar Ostricher2022-09-081-1/+0
* gh-88287: Add BufferingFormatter documentation. (GH-96608)Vinay Sajip2022-09-081-0/+29
* GH-90699: use statically allocated interned strings in typeobject's slotdefs ...Kumar Aditya2022-09-075-176/+140
* gh-96665: Fixes build break on older MSVC versions due to C++20 features in a...Steve Dower2022-09-071-0/+10
* gh-96268: Fix loading invalid UTF-8 (#96270)Michael Droettboom2022-09-073-16/+57
* gh-94781: Fix Windows projects not cleaning intermediate and output files for...Charlie Zhao2022-09-073-0/+18
* gh-89545: Updates platform module to use new internal _wmi module on Windows ...Steve Dower2022-09-0717-91/+859
* gh-96577: Fixes buffer overrun in _msi module (GH-96633)Steve Dower2022-09-072-2/+3
* GH-96465: Cache hashes for Fraction instances (GH-96483)Raymond Hettinger2022-09-072-30/+36
* gh-88057: in compile.c, assertion that stackdepth is alway >=0 is missing in ...Irit Katriel2022-09-071-0/+1
* gh-94808: Improve coverage of _PyBytes_FormatEx (GH-95895)Michael Droettboom2022-09-071-0/+18
* gh-96641: Do not expose `KeyWrapper` in `_functoolsmodule.c` (gh-96642)Nikita Sobolev2022-09-072-3/+3
* GH-91432: Remove the iterator_exhausted_no_error label (GH-96517)Brandt Bucher2022-09-071-16/+20
* gh-96538: Fix refleak in _bisectmodule.c (gh-96619)Dennis Sweeney2022-09-062-0/+30
* gh-96628: remove deprecated and ignored arg of sysconfig.is_python_build() (G...Irit Katriel2022-09-061-1/+1
* gh-96611: Fix error message for invalid UTF-8 in mid-multiline string (#96623)Michael Droettboom2022-09-063-0/+16
* GH-96572: fix use after free in trace refs build mode (#96618)Kumar Aditya2022-09-062-1/+2
* GH-96612: Skip incomplete frames in tracemalloc traces. (GH-96613)Mark Shannon2022-09-063-3/+23
* gh-96478: Fix new test when run in refleak mode (#96615)Jelle Zijlstra2022-09-061-12/+12
* GH-96569: Add two NULL checks to avoid undefined behavior. (GH-96585)Mark Shannon2022-09-063-10/+13
* GH-93911: Fix `LOAD_ATTR_PROPERTY` caches (GH-96519)Brandt Bucher2022-09-062-5/+7
* gh-96478: Test `@overload` on C functions (#96479)Nikita Sobolev2022-09-051-0/+14
* argparse: Remove unused name variable when handling ArgumentTypeError (#96549)Jonathon Reinhart2022-09-051-1/+0
* [doc] Update example in traceback doc (GH-96600)Irit Katriel2022-09-051-15/+11
* gh-93963: Remove ResourceReaderDefaultsTests (GH-96598)Jason R. Coombs2022-09-051-28/+0
* gh-96559: Fixes Windows launcher handling of defaults using old-style tags, a...Steve Dower2022-09-054-22/+51
* Add upstream openssl 1.1.1q patch for trivial build error on macOS (GH-96594)Ned Deily2022-09-052-0/+18
* gh-92986: Fix ast.unparse when ImportFrom.level is None (#92992)Shantanu2022-09-053-1/+8
* gh-96587: Raise `SyntaxError` for PEP654 on older `feature_version` (#96588)Nikita Sobolev2022-09-054-2/+15
* gh-84095: Fill documentation gap regarding user-defined objects. (GH-96574)Vinay Sajip2022-09-051-0/+19
* gh-96538: Move some type-checking out of bisect.bisect() loops (GH-96539)Dennis Sweeney2022-09-052-16/+143
* gh-93973: Add all_errors to asyncio.create_connection (#93974)Pamela Fox2022-09-054-2/+54
* ceval.c's GETITEM should have asserts, not set exceptions (GH-96518)Dennis Sweeney2022-09-041-2/+8
* Docs: alphabetically order sqlite3.Cursor attrs (#96565)Erlend E. Aasland2022-09-041-30/+31
* gh-95778: Correctly pre-check for int-to-str conversion (#96537)Mark Dickinson2022-09-044-7/+107
* no-issue: Fix typo in 3.11.0a7.rst (gh-96547)Ikko Ashimine2022-09-041-1/+1
* gh-68163: Correct conversion of Rational instances to float (GH-25619)Sergey B Kirpichev2022-09-044-4/+36
* gh-93884: Improve test coverage of `PyNumber_ToBase` (GH-93932)Charlie Zhao2022-09-042-8/+25
* gh-95778: remove unneeded doc note on float.as_integer_ratio (#96553)Gregory P. Smith2022-09-041-7/+0