summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* gh-94808: Coverage: Test uppercase string literal prefixes (GH-95925)Miss Islington (bot)2022-09-251-0/+7
* gh-96052: codeop: fix handling compiler warnings in incomplete input (GH-96132)Miss Islington (bot)2022-09-253-13/+37
* gh-96959: Update HTTP links which are redirected to HTTPS (GH-96961)Miss Islington (bot)2022-09-2524-63/+63
* gh-97527: IDLE: protect macosx Tk() call when no GUI (GH-97530)Miss Islington (bot)2022-09-241-13/+17
* gh-96965: Update Windows release to libffi 3.4.3 (GH-97512)Miss Islington (bot)2022-09-233-4/+5
* gh-94781: Fix Windows projects not cleaning intermediate and output files for...Miss Islington (bot)2022-09-233-0/+18
* gh-77171: Document that wave only supports simple PCM files (GH-97510)Steve Dower2022-09-231-1/+2
* gh-75608: Add Windows FAQ entry for missing UCRT (GH-92765)Miss Islington (bot)2022-09-231-0/+8
* gh-96761: Fix build process of the clang compiler for _bootstrap_python (gh-9...Miss Islington (bot)2022-09-233-4/+43
* gh-96397: Document that keywords in calls need not be identifiers (GH-96393)Miss Islington (bot)2022-09-221-2/+12
* GH-85760: Fix race in calling process_exited callback too early (GH-97009)Miss Islington (bot)2022-09-222-1/+3
* GH-96975: Skip incomplete frames in PyEval_GetFrame (GH-97018)Miss Islington (bot)2022-09-224-3/+79
* gh-90155: Fix bug in asyncio.Semaphore and strengthen FIFO guarantee (GH-93222)Miss Islington (bot)2022-09-223-22/+143
* Remove a stray DISPATCH() (GH-97004)Brandt Bucher2022-09-221-1/+0
* gh-97005: Update libexpat from 2.4.7 to 2.4.9 (gh-97006)Miss Islington (bot)2022-09-228-17/+28
* [3.11] gh-96954: Add tests for unicodedata.name/lookup (GH-96955) (GH-96991)Ɓukasz Langa2022-09-211-0/+7
* gh-81039: Add small example of f-string's "=}" to tutorial (gh-92291) (gh-96989)Miss Islington (bot)2022-09-212-1/+12
* gh-90808: add more examples to `test_sched.test_priority` (GH-31144)Miss Islington (bot)2022-09-211-4/+17
* gh-95950: Add a test for both `csv.Dialect` and `kwargs` (GH-95951)Miss Islington (bot)2022-09-211-0/+28
* gh-96478: Test `@overload` on C functions (GH-96479)Miss Islington (bot)2022-09-211-0/+14
* [Enum] fix typos (GH-96285)Miss Islington (bot)2022-09-201-2/+2
* gh-95591: [Enum] use `_FlagTests` base class (GH-96475)Miss Islington (bot)2022-09-201-4/+4
* [3.11] GH-95921: Fix positions for some chained comparisons (GH-96968) (GH-96...Brandt Bucher2022-09-203-0/+29
* GH-96864: Check for error between line and opcode events (GH-96880)Miss Islington (bot)2022-09-203-1/+17
* [3.11] gh-96727: Document restrictions on Handler.emit() with respect to lock...Miss Islington (bot)2022-09-201-0/+16
* gh-96387: take_gil() resets drop request before exit (#96869) (#96941)Victor Stinner2022-09-202-0/+16
* gh-96917: link to typing.readthedocs.io from typing.rst (GH-96921)Miss Islington (bot)2022-09-191-0/+5
* gh-95913: Copyedit, link & format Typing Features section in 3.11 What's New ...Miss Islington (bot)2022-09-191-23/+50
* gh-95913: Fix and copyedit New Features section of 3.11 What's New (GH-95915)Miss Islington (bot)2022-09-192-35/+40
* gh-96821: Fix undefined behaviour in `_testcapimodule.c` (GH-96915) (GH-96927)Miss Islington (bot)2022-09-192-1/+4
* GH-96851: Add link to FAQ entry for caching method calls. (GH-96902)Miss Islington (bot)2022-09-182-0/+5
* [3.11] gh-96861: Check for unset sys.executable during venv creation. (GH-968...Miss Islington (bot)2022-09-181-0/+5
* Simplify sieve() recipe. Add edge case tests. (GH-96892)Miss Islington (bot)2022-09-181-1/+7
* Clarify that the expression is regular math notation, not Python. (GH-96903) ...Miss Islington (bot)2022-09-181-2/+2
* gh-87179: Fix more IDLE class headers (GH-96899)Miss Islington (bot)2022-09-172-2/+2
* [3.11] gh-96883: browser: include concurrent.futures (GH-96886) (GH-96888)Christian Heimes2022-09-172-17/+19
* Fix ResourceWarning in test.test_frame (GH-96831)Miss Islington (bot)2022-09-171-16/+19
* gh-95778: Mention sys.set_int_max_str_digits() in error message (GH-96874)Miss Islington (bot)2022-09-163-4/+7
* gh-96810: Clarify for which statements sqlite3 implicitly opens transactions ...Miss Islington (bot)2022-09-151-1/+2
* gh-96702: Order methods before attrs in sqlite3.Connection docs (GH-96703) (#...Miss Islington (bot)2022-09-141-97/+96
* gh-96729: Ensure installers built with Tools/msi/buildrelease.bat have matchi...Miss Islington (bot)2022-09-142-1/+5
* Itertools sieve() recipe (GH-96813) (GH-96814)Miss Islington (bot)2022-09-141-6/+28
* Add dataclass field default change to 3.11 what's new (GH-96790)Miss Islington (bot)2022-09-131-0/+8
* gh-95778: Fix `sys.set_int_max_str_digits()` parameter name (GH-96798)Miss Islington (bot)2022-09-131-1/+1
* gh-96706: [doc] Don't recomment deprecated use of get_event_loop() in example...Miss Islington (bot)2022-09-132-4/+4
* gh-96678: Avoid undefined behaviour in test (GH-96672) (#96795)Miss Islington (bot)2022-09-131-1/+1
* gh-96678: Fix UB of null pointer arithmetic (GH-96782)Miss Islington (bot)2022-09-132-1/+2
* [3.11] gh-96005: Handle WASI ENOTCAPABLE in getpath (GH-96006) (GH-96034) (GH...Christian Heimes2022-09-137-6/+35
* GH-96754: Check whether the interpreter frame is complete before creating fra...Miss Islington (bot)2022-09-134-3/+14
* gh-84461: Omit resource mod and getresuid funcs on Emscripten (GH-96303)Miss Islington (bot)2022-09-134-4/+10