summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* More updates to the descriptor howto guide (GH-23238)Raymond Hettinger2020-11-161-45/+62
* bpo-42317: Improve docs of typing.get_args concerning Union (GH-23254)Dominik11232020-11-161-0/+3
* bpo-42318: Fix support of non-BMP characters in Tkinter on macOS (GH-23281)Serhiy Storchaka2020-11-153-7/+94
* bpo-42351: Avoid error when opening header with non-UTF8 encoding (GH-23279)Ronald Oussoren2020-11-141-1/+1
* bpo-41832: Restore note about NULL in PyType_Slot.pfunc (GH-23243)Hai Shi2020-11-141-0/+2
* fix typo in ThreadedChildWatcher docs (GH-23277)Thomas Grainger2020-11-141-1/+1
* bpo-42131: Add PEP 451-related methods to zipimport (GH-23187)Brett Cannon2020-11-136-965/+1131
* bpo-40754: Adds _testinternalcapi to Windows installer for test suite (GH-23271)Steve Dower2020-11-132-2/+3
* bpo-41001: Add os.eventfd() (#20930)Christian Heimes2020-11-139-3/+471
* bpo-42344: Improve pseudo implementation for SimpleNamespace (GH-23264)Jürgen Gmach2020-11-131-1/+3
* bpo-40968: Send http/1.1 ALPN extension (#20959)Christian Heimes2020-11-135-0/+17
* bpo-42042: Use ids attribute instead of names attribute (GH-22739)Dong-hee Na2020-11-131-2/+2
* bpo-41617: Add _Py__has_builtin() macro (GH-23260)Victor Stinner2020-11-133-9/+21
* bpo-42296: On Windows, fix CTRL+C regression (GH-23257)Victor Stinner2020-11-132-5/+37
* bpo-38823: Fix compiler warning in _ctypes on Windows (GH-23258)Victor Stinner2020-11-131-1/+1
* bpo-42246: Fix memory leak in compiler (GH-23256)Mark Shannon2020-11-131-7/+13
* 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