summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-45948: Remove constructor discrepancy in C version of ElementTree.XMLPars...Miss Islington (bot)2022-02-124-5/+19
* bpo-46483: [doc] pathlib classes no longer support parameterized generics (GH...Miss Islington (bot)2022-02-111-4/+0
* bpo-46615: Don't crash when set operations mutate the sets (GH-31120)Miss Islington (bot)2022-02-113-8/+226
* [3.10] bpo-46433: _PyType_GetModuleByDef: handle static types in MRO (GH-3069...Petr Viktorin2022-02-115-13/+77
* bpo-46246: add missing __slots__ to importlib.metadata.DeprecatedList (GH-30452)Miss Islington (bot)2022-02-113-0/+9
* [3.10] Allow the parser to avoid nested processing of invalid rules (GH-31252...Pablo Galindo Salgado2022-02-106-921/+921
* [3.10] Fix warning: asyncio.events._event_loop_policy was modified by test_as...Andrew Svetlov2022-02-107-4/+30
* [3.10] bpo-46707: Avoid potential exponential backtracking in some syntax err...Pablo Galindo Salgado2022-02-104-884/+901
* bpo-43532: add version added to KW_ONLY (GH-31235)Miss Islington (bot)2022-02-091-0/+2
* bpo-45863: tarfile: don't zero out header fields unnecessarily (GH-29693)Miss Islington (bot)2022-02-093-6/+71
* bpo-46685: cover `TypeError` of `ForwardRef(1)` in `test_typing` (GH-31223)Miss Islington (bot)2022-02-091-0/+4
* bpo-46678: Fix Invalid cross device link in Lib/test/support/import_helper.py...Miss Islington (bot)2022-02-082-1/+5
* [3.10] bpo-46521: Fix codeop to use a new partial-input mode of the parser (G...Pablo Galindo Salgado2022-02-087-54/+52
* [3.10] bpo-46676: Make ParamSpec args and kwargs equal to themselves (GH-3120...Gregory Beauregard2022-02-083-0/+19
* [3.10] bpo-46648: Rewrite test_urllib2.test_issue16464() with a local HTTP se...Miss Islington (bot)2022-02-072-18/+18
* bpo-46638: Makes registry virtualisation setting stable when building MSIX pa...Miss Islington (bot)2022-02-073-4/+16
* [3.10] bpo-46655: allow stringized TypeAlias with get_type_hints (GH-31156). ...Gregory Beauregard2022-02-073-1/+7
* [3.10] bpo-46611: add coverage to instance and class checks in `typing.py` (G...Nikita Sobolev2022-02-072-16/+59
* bpo-40479: Fix undefined behavior in Modules/_hashopenssl.c (GH-31153)Miss Islington (bot)2022-02-072-0/+2
* Add more tests for variable substitution in generics (GH-31170)Miss Islington (bot)2022-02-061-0/+27
* bpo-46648: Skip test_urllib2.test_issue16464() (GH-31161)Miss Islington (bot)2022-02-061-0/+2
* [3.10] bpo-46609: Update asyncio-task coroutine doc (GH-31132)Terry Jan Reedy2022-02-041-1/+1
* bpo-46629: Update classicAppCompat.sccd for new signing certificate (GH-31111)Miss Islington (bot)2022-02-042-29/+42
* Optimize images by IMGbot (GH-21348)Miss Islington (bot)2022-02-0425-1/+1
* bpo-46588: fix typo in test_calltip.py (GH-31119)Miss Islington (bot)2022-02-041-1/+1
* bpo-14916: use specified tokenizer fd for file input (GH-31006)Miss Islington (bot)2022-02-032-1/+2
* bpo-46630: Fix initial focus of IDLE query dialogs (GH-31112)Miss Islington (bot)2022-02-033-1/+5
* bpo-45975: IDLE - Remove extraneous parens (GH-31107)Miss Islington (bot)2022-02-033-4/+4
* bpo-45773: Remove invalid peephole optimizations (GH-31066)Miss Islington (bot)2022-02-032-2/+1
* Add recipe for subslices (GH-31095)Raymond Hettinger2022-02-031-0/+6
* [3.10] bpo-46576: bpo-46524: Disable compiler optimization within test_peg_ge...Gregory P. Smith2022-02-032-0/+13
* bpo-45975: Use walrus operator for some idlelib while loops (GH-31083)Miss Islington (bot)2022-02-035-24/+9
* bpo-46616: Ensures test_importlib.test_windows cleans up registry keys after ...Miss Islington (bot)2022-02-022-3/+16
* [3.10] bpo-45173: Note configparser deprecations will be removed in 3.12 (GH-...Hugo van Kemenade2022-02-022-4/+5
* Fix minor details in the Counter docs (GH-31029) (GH-31072)Miss Islington (bot)2022-02-022-3/+14
* bpo-44359: Fix test_ftplib unhandled thread exceptions (GH-31069)Miss Islington (bot)2022-02-022-4/+13
* bpo-46591: Make About IDLE doc link label clickable (GH-30251)Miss Islington (bot)2022-02-024-2/+7
* bpo-46487: Add `get_write_buffer_limits` to Write and _SSLProtocol transports...Miss Islington (bot)2022-02-013-0/+13
* bpo-45925: Update macOS installer to SQLite 3.37.2 (GH-30921) (GH-31057)Ned Deily2022-02-012-3/+4
* [3.10] bpo-46584: remove check for `py2.3` from `ctypes/test_python_api` (GH-...Miss Islington (bot)2022-02-011-6/+2
* bpo-44031: fix test_tabnanny failure in non-ascii CWD (GH-31014)Miss Islington (bot)2022-02-011-2/+2
* bpo-46482: add a test for `typing.Annotation.__new__` (GH-30821)Miss Islington (bot)2022-02-011-0/+7
* bpo-46542: test_lib2to3 uses support.infinite_recursion() (GH-31035)Miss Islington (bot)2022-01-315-23/+47
* bpo-26552: Fixed case where failing `asyncio.ensure_future` did not close the...Kumar Aditya2022-01-293-3/+21
* bpo-46560: Fix a typo in `typing.ParamSpec's` doc string (GH-30995)Miss Islington (bot)2022-01-281-1/+1
* bpo-45925: Update Windows installer to SQLite 3.37.2 (GH-30485)Steve Dower2022-01-284-3/+4
* bpo-46530: add `"thread_time"` to `test_time.test_get_clock_info` (GH-30913)Miss Islington (bot)2022-01-281-12/+18
* bpo-46542: test_json uses support.infinite_recursion() (GH-30972)Miss Islington (bot)2022-01-282-6/+15
* bpo-29844: Remove obsolete paragraph from Tools/msi/README.txt (GH-29141)Miss Islington (bot)2022-01-271-8/+3
* bpo-46539: Pass status of special typeforms to forward references (GH-30926)Miss Islington (bot)2022-01-273-3/+18