summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* gh-96005: Handle WASI ENOTCAPABLE in getpath (GH-96006)Christian Heimes2022-08-166-4/+31
* gh-94823: Improve coverage in tokenizer.c:valid_utf8 (GH-94856)Michael Droettboom2022-08-161-0/+61
* GH-95736: fix IsolatedAsyncioTestCase to initialize Runner before calling set...Kumar Aditya2022-08-163-0/+20
* GH-95245: Move weakreflist into the pre-header. (GH-95996)Mark Shannon2022-08-166-20/+105
* remove repetitive credit from what's new in 3.11 rst (GH-96024)Irit Katriel2022-08-161-1/+0
* gh-95957: Add instructions for Tcl/Tk and OpenSSL on RHEL/CentOS 7 (#95964)Christian Heimes2022-08-166-6/+46
* Change CODEOWNERS entries for iritkatriel (GH-96008)Irit Katriel2022-08-161-2/+1
* gh-95808: Add missing early returns in _asynciomodule.c (#95809)Yury Selivanov2022-08-151-2/+3
* gh-78143: IDLE - fix settings dialog page label. (#96009)Terry Jan Reedy2022-08-151-1/+1
* GH-94808: Test __build_class__ inside non-dict __builtins__ (GH-95932)Michael Droettboom2022-08-151-5/+9
* GH-95899: fix asyncio.Runner to call set_event_loop only once (#95900)Kumar Aditya2022-08-153-3/+20
* gh-95231: Disable md5 & crypt modules if FIPS is enabled (GH-94742)Shreenidhi Shedi2022-08-152-1/+4
* gh-95707: Fix function signature (GH-95995)Christian Heimes2022-08-151-1/+2
* GH-95707: Fix uses of `Py_TPFLAGS_MANAGED_DICT` (GH-95854)Mark Shannon2022-08-157-25/+137
* gh-95853: Address wasm build and test issues (GH-95985)Christian Heimes2022-08-153-6/+14
* Clarify asyncio.Runner docs re: loop_factory (#95979)Kumar Aditya2022-08-141-1/+3
* GH-95977: Speed up calling pure python descriptor __get__ with vectorcall (gh...Kumar Aditya2022-08-142-1/+3
* bpo-40222: Mark exception table function in the dis module as private (#95961)Pablo Galindo Salgado2022-08-141-8/+8
* gh-95853: Add script to automate WASM build (GH-95828)Christian Heimes2022-08-139-21/+827
* gh-89313: Add hashlib.file_digest to whatsnew 3.11 (GH-95965)Christian Heimes2022-08-131-0/+4
* bpo-25625: Document contextlib.chdir in the 3.11 what's new (#95962)Pablo Galindo Salgado2022-08-131-0/+7
* gh-95914: Add paragraph about PEP 654 in main body of 'What's New in 3.11' (G...Irit Katriel2022-08-131-2/+19
* gh-90928: Improve static initialization of keywords tuple in AC (#95907)Erlend E. Aasland2022-08-1381-6801/+2750
* gh-94439: typing docs: Add minimum version to `__required_keys__` and `__opti...Howie Zhao2022-08-131-0/+5
* Fix typo in internal/pycore_atomic.h (GH-95939)fluesvamp2022-08-131-1/+1
* gh-94909: fix joining of absolute and relative Windows paths in pathlib (GH-...Barney Gale2022-08-123-33/+14
* gh-94996: Disallow lambda pos only params with feature_version < (3, 8) (GH-9...Shantanu2022-08-123-4/+11
* gh-94996: Disallow parsing pos only params with feature_version < (3, 8) (GH-...Shantanu2022-08-125-6/+15
* gh-90300: [docs] Add whatsnew entry for new --help output (GH-95856) (GH-95928)Ɓukasz Langa2022-08-121-0/+6
* gh-82180: Document support for non-integer arg removed from grp.getgrgid in 3...Hugo van Kemenade2022-08-121-3/+2
* gh-95914: Add missing PEPs to the Summary section of 3.11 What's New (GH-95916)CAM Gerlach2022-08-121-5/+23
* gh-95922: compiler's eliminate_empty_basic_blocks ignores the last block of t...Irit Katriel2022-08-122-8/+7
* gh-95724: Clarify taskgroups.py license. (#95847)Yury Selivanov2022-08-112-2/+4
* gh-95273: Improve sqlite3.complete_statement docs (#95840)Erlend E. Aasland2022-08-113-39/+40
* gh-90928: Statically Initialize the Keywords Tuple in Clinic-Generated Code (...Eric Snow2022-08-11127-619/+16240
* gh-95841: IDLE - Revise Windows local doc url (#95845)Terry Jan Reedy2022-08-111-4/+14
* gh-84910: Change 'IDLE Help' to 'IDLE Doc' (#95873)Terry Jan Reedy2022-08-111-1/+1
* gh-87092: compiler's codegen stage uses int jump target labels, and the targe...Irit Katriel2022-08-111-70/+52
* GH-95818: Skip incomplete frames in `PyThreadState_GetFrame` (GH-95886)Mark Shannon2022-08-113-2/+29
* Update _PyEval_AddPendingCall comment (#95817)zhanpon2022-08-111-2/+2
* gh-95878: Fix format char in datetime CAPI tests (GH-95879)Christian Heimes2022-08-111-4/+4
* gh-95876: Fix format string in pegen error location code (#95877)Christian Heimes2022-08-112-1/+5
* gh-90385: Add pathlib.Path.walk what's new section (GH-95467)Stanislav Zmiev2022-08-111-0/+7
* Docs: replace 'currying' by 'partial function'. (#91814)Clemens Tolboom2022-08-111-0/+2
* gh-75510: Edit idlelib entry in doc (#95869)Terry Jan Reedy2022-08-111-3/+6
* gh-84910: Tweak IDLE Glossary entry (#95866)Terry Jan Reedy2022-08-111-3/+3
* gh-95733: Allow installing Store package on older Windows versions (GH-95862)Steve Dower2022-08-102-1/+4
* gh-95605: Fix `float(s)` error message when `s` contains only whitespace (GH-...Mark Dickinson2022-08-103-1/+14
* gh-95804: Respect MemoryHandler.flushOnClose in logging shutdown. (GH-95857)David Bonner2022-08-104-1/+37
* gh-95504: Fix negative numbers in PyUnicode_FromFormat (GH-95848)Petr Viktorin2022-08-105-7/+86