summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-42246: Eliminate jumps to exit blocks by copying those blocks. (#23251)Mark Shannon2020-11-126-4655/+4653
* bpo-42308: Add threading.__excepthook__ (GH-23218)Mario Corchero2020-11-125-0/+40
* bpo-38823: Always build _ctypes with wchar_t (GH-23248)Victor Stinner2020-11-126-31/+7
* bpo-42260: Initialize time and warnings earlier at startup (GH-23249)Victor Stinner2020-11-127-133/+68
* bpo-38823: Fix refleaks in _ctypes extension init (GH-23247)Victor Stinner2020-11-122-162/+156
* Bump magic number. (GH-23245)Mark Shannon2020-11-123-112/+114
* bpo-42237: Fix os.sendfile() on illumos (GH-23154)Jakub Stasiak2020-11-122-0/+16
* bpo-42246: Partial implementation of PEP 626. (GH-23113)Mark Shannon2020-11-1219-4994/+5358
* Fix memory leak introduced by GH-22780 (GH-23237)Andrew Svetlov2020-11-111-0/+1
* bpo-40170: Fix PyType_Ready() refleak on static type (GH-23236)Victor Stinner2020-11-112-2/+8
* bpo-40932: Note security caveat of shlex.quote on Windows (GH-21502)Ammar Askar2020-11-112-5/+16
* bpo-39411: pyclbr rewrite on AST (#18103)Batuhan Taskaya2020-11-114-211/+118
* bpo-1635741: Fix typo in PyModule_AddObjectRef() doc (GH-23234)Victor Stinner2020-11-112-2/+2
* bpo-42294: Grammar fixes in doc glossary strong/weak refs (GH-23227)kj2020-11-102-6/+6
* bpo-42140: Improve asyncio.wait function (GH-22938)Diogo Dutra2020-11-103-2/+29
* bpo-41073: PyType_GetSlot() can now accept static types. (GH-21931)Hai Shi2020-11-107-101/+205
* bpo-42260: Fix _PyConfig_Read() if compute_path_config=0 (GH-23220)Victor Stinner2020-11-108-95/+93
* bpo-42085: Introduce dedicated entry in PyAsyncMethods for sending values (#2...Vladimir Matveev2020-11-1013-49/+146
* bpo-42014: shutil.rmtree: call onerror with correct function (GH-22585)Michal Čihař2020-11-102-1/+2
* Update whatsnew for 3.10 release about addition of contextlib.aclosing (GH-23...Joongi Kim2020-11-101-0/+7
* bpo-42183: Fix a stack overflow error for asyncio Task or Future repr() (GH-2...Andrew Svetlov2020-11-103-3/+44
* bpo-42171: Add PEP573-related items to the limited API (GH-23009)Petr Viktorin2020-11-104-3/+13
* Fix typo in test_array.py (GH-23189)Ikko Ashimine2020-11-101-1/+1
* bpo-42260: Compute the path config in the main init (GH-23211)Victor Stinner2020-11-106-74/+85
* Fix typo in unicodeobject.c (GH-23180)Ikko Ashimine2020-11-101-1/+1
* bpo-36310: Allow pygettext.py to detect calls to gettext in f-strings. (GH-19...jack11422020-11-094-0/+126
* bpo-41712: Avoid runaway regex match in upload scripts (GH-23166)Yash Shete2020-11-091-1/+1
* bpo-42294: Add borrowed/strong reference to doc glossary (GH-23206)Victor Stinner2020-11-0911-22/+72
* bpo-41543: contextlib.nullcontext can fill in for an async context manager (G...Tom Gringauz2020-11-094-2/+39
* bpo-40624: Add support for the XPath != operator in xml.etree (GH-22147)Ammar Askar2020-11-094-7/+78
* bpo-42233: Add union type expression support for GenericAlias and fix de-dupl...kj2020-11-096-17/+51
* bpo-41754: Ignore NotADirectoryError in invocation of xdg-settings (GH-23075)Ronald Oussoren2020-11-082-1/+2
* bpo-41100: Support macOS 11 and Apple Silicon (GH-22855)Ronald Oussoren2020-11-0827-345/+1587
* Minor wording change in concurrent.futures. (GH-23194)Don Kirkby2020-11-081-3/+3
* bpo-40077: Convert _queuemodule to use heap types (GH-23136)Erlend Egeberg Aasland2020-11-073-105/+138
* bpo-42282: Fold constants inside named expressions (GH-23190)Nick Coghlan2020-11-072-11/+46
* bpo-41028: Doc: Move switchers to docsbuild-scripts. (GH-20969)Julien Palard2020-11-076-173/+16
* bpo-42133: update parts of the stdlib to fall back to `__spec__.loader` when ...Brett Cannon2020-11-076-14/+59
* Remove outdated reference to pywin32 from platform module (GH-22005)Andre Delfino2020-11-061-7/+0
* bpo-41832: PyType_FromModuleAndSpec() now accepts NULL tp_doc (GH-23123)Hai Shi2020-11-067-4/+44
* Minor grammar edits for the descriptor howto guide (GH-#23175)Raymond Hettinger2020-11-061-10/+10
* bpo-42179: Doc/tutorial: Remove mention of __cause__ (GH-23162)Inada Naoki2020-11-061-9/+10
* bpo-26389: Allow passing an exception object in the traceback module (GH-22610)Zackery Spytz2020-11-055-24/+97
* bpo-42260: PyConfig_Read() only parses argv once (GH-23168)Victor Stinner2020-11-056-105/+134
* bpo-42260: Add _PyConfig_FromDict() (GH-23167)Victor Stinner2020-11-056-60/+653
* bpo-41877 Check for asert, aseert, assrt in mocks (GH-23165)vabr-g2020-11-053-3/+14
* [docs] fix wrongly named AsyncContextDecorator (GH-23164)kj2020-11-051-3/+5
* bpo-42262: Add Py_NewRef() and Py_XNewRef() (GH-23152)Victor Stinner2020-11-057-6/+85
* bpo-42266: Handle monkey-patching descriptors in LOAD_ATTR cache (GH-23157)Pablo Galindo2020-11-054-7/+28
* bpo-40816 Add AsyncContextDecorator class (GH-20516)Kazantcev Andrey2020-11-054-1/+114