summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* bpo-42350: Fix Thread._reset_internal_locks() (GH-23268)Victor Stinner2020-11-161-0/+3
* bpo-37205: time.perf_counter() and time.monotonic() are system-wide (GH-23284)Victor Stinner2020-11-161-0/+5
* bpo-42153 Fix link to IMAP documents in imaplib.rst (GH-23297)Yash Shete2020-11-161-0/+1
* bpo-42332: Add weakref slot to types.GenericAlias (GH-23250)kj2020-11-161-0/+1
* bpo-42318: Fix support of non-BMP characters in Tkinter on macOS (GH-23281)Serhiy Storchaka2020-11-151-0/+1
* bpo-42131: Add PEP 451-related methods to zipimport (GH-23187)Brett Cannon2020-11-131-0/+5
* bpo-40754: Adds _testinternalcapi to Windows installer for test suite (GH-23271)Steve Dower2020-11-131-0/+1
* bpo-41001: Add os.eventfd() (#20930)Christian Heimes2020-11-131-0/+2
* bpo-40968: Send http/1.1 ALPN extension (#20959)Christian Heimes2020-11-131-0/+2
* bpo-41617: Add _Py__has_builtin() macro (GH-23260)Victor Stinner2020-11-131-0/+3
* bpo-42296: On Windows, fix CTRL+C regression (GH-23257)Victor Stinner2020-11-131-0/+4
* bpo-42308: Add threading.__excepthook__ (GH-23218)Mario Corchero2020-11-121-0/+3
* bpo-38823: Always build _ctypes with wchar_t (GH-23248)Victor Stinner2020-11-121-0/+3
* bpo-42237: Fix os.sendfile() on illumos (GH-23154)Jakub Stasiak2020-11-121-0/+1
* bpo-42246: Partial implementation of PEP 626. (GH-23113)Mark Shannon2020-11-121-0/+2
* bpo-39411: pyclbr rewrite on AST (#18103)Batuhan Taskaya2020-11-111-0/+2
* bpo-1635741: Fix typo in PyModule_AddObjectRef() doc (GH-23234)Victor Stinner2020-11-111-1/+1
* bpo-42140: Improve asyncio.wait function (GH-22938)Diogo Dutra2020-11-101-0/+1
* bpo-41073: PyType_GetSlot() can now accept static types. (GH-21931)Hai Shi2020-11-101-0/+1
* bpo-42260: Fix _PyConfig_Read() if compute_path_config=0 (GH-23220)Victor Stinner2020-11-101-0/+7
* bpo-42085: Introduce dedicated entry in PyAsyncMethods for sending values (#2...Vladimir Matveev2020-11-101-0/+1
* bpo-42014: shutil.rmtree: call onerror with correct function (GH-22585)Michal Čihař2020-11-101-0/+1
* bpo-42183: Fix a stack overflow error for asyncio Task or Future repr() (GH-2...Andrew Svetlov2020-11-101-0/+4
* bpo-42171: Add PEP573-related items to the limited API (GH-23009)Petr Viktorin2020-11-101-0/+4
* bpo-36310: Allow pygettext.py to detect calls to gettext in f-strings. (GH-19...jack11422020-11-092-0/+3
* bpo-41543: contextlib.nullcontext can fill in for an async context manager (G...Tom Gringauz2020-11-091-0/+1
* bpo-40624: Add support for the XPath != operator in xml.etree (GH-22147)Ammar Askar2020-11-091-0/+1
* bpo-42233: Add union type expression support for GenericAlias and fix de-dupl...kj2020-11-091-0/+5
* bpo-41754: Ignore NotADirectoryError in invocation of xdg-settings (GH-23075)Ronald Oussoren2020-11-081-0/+1
* bpo-41100: Support macOS 11 and Apple Silicon (GH-22855)Ronald Oussoren2020-11-081-0/+8
* bpo-40077: Convert _queuemodule to use heap types (GH-23136)Erlend Egeberg Aasland2020-11-071-0/+1
* bpo-42282: Fold constants inside named expressions (GH-23190)Nick Coghlan2020-11-071-0/+3
* bpo-41028: Doc: Move switchers to docsbuild-scripts. (GH-20969)Julien Palard2020-11-071-0/+2
* bpo-42133: update parts of the stdlib to fall back to `__spec__.loader` when ...Brett Cannon2020-11-071-0/+2
* bpo-41832: PyType_FromModuleAndSpec() now accepts NULL tp_doc (GH-23123)Hai Shi2020-11-061-0/+2
* bpo-26389: Allow passing an exception object in the traceback module (GH-22610)Zackery Spytz2020-11-051-0/+4
* bpo-42260: PyConfig_Read() only parses argv once (GH-23168)Victor Stinner2020-11-051-0/+5
* bpo-41877 Check for asert, aseert, assrt in mocks (GH-23165)vabr-g2020-11-051-0/+2
* bpo-42262: Add Py_NewRef() and Py_XNewRef() (GH-23152)Victor Stinner2020-11-051-0/+2
* bpo-42266: Handle monkey-patching descriptors in LOAD_ATTR cache (GH-23157)Pablo Galindo2020-11-051-0/+3
* bpo-40816 Add AsyncContextDecorator class (GH-20516)Kazantcev Andrey2020-11-051-0/+1
* bpo-42260: Main init modify sys.flags in-place (GH-23150)Victor Stinner2020-11-041-0/+3
* bpo-1635741: Add PyModule_AddObjectRef() function (GH-23122)Victor Stinner2020-11-041-0/+3
* bpo-42236: os.device_encoding() respects UTF-8 Mode (GH-23119)Victor Stinner2020-11-041-0/+3
* bpo-42251: Add gettrace and getprofile to threading (GH-23125)Mario Corchero2020-11-041-0/+3
* Merge tag 'v3.10.0a2' into masterPablo Galindo2020-11-0390-186/+912
|\
| * Python 3.10.0a2v3.10.0a2Pablo Galindo2020-11-0390-186/+912
* | bpo-42249: Fix writing binary Plist files larger than 4 GiB. (GH-23121)Serhiy Storchaka2020-11-031-0/+1
* | bpo-40077: Convert mmap.mmap static type to a heap type (GH-23108)Erlend Egeberg Aasland2020-11-031-0/+1
|/
* bpo-35455: Fix thread_time for Solaris OS (GH-11118)Jakub Kulík2020-11-021-0/+3