summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* Add doctests to the descriptor HowTo (GH-23500)Raymond Hettinger2020-11-251-57/+397
* bpo-40170: Hide impl detail of Py_TRASHCAN_BEGIN macro (GH-23235)Hai Shi2020-11-243-1/+15
* bpo-42392: Remove loop parameter form asyncio locks and Queue (#23420)Yurii Karabas2020-11-2410-451/+304
* bpo-42370: Check element before making mouse click in ttk tests (GH-23491)Serhiy Storchaka2020-11-241-3/+11
* bpo-42212: smelly.py also checks the dynamic library (GH-23423)Victor Stinner2020-11-243-36/+124
* bpo-42260: Improve error handling in _PyConfig_FromDict (GH-23488)Serhiy Storchaka2020-11-241-4/+9
* bpo-41100: in test_platform, ignore 10.16 (GH-23485)Ned Deily2020-11-241-1/+4
* bpo-41100: minor build installer fixes (GH-23480)Ned Deily2020-11-241-6/+12
* Typo (#23482)Jesús Cea2020-11-231-1/+1
* Added support for negative indexes to PurePath.parents (GH-21799)Yaroslav Pankovych2020-11-237-5/+15
* Descriptor HowTo: Improve the fidelity of the member object simulation (GH-23...Raymond Hettinger2020-11-231-11/+46
* bpo-15450: Allow subclassing of dircmp (GH-23424) (#23424)Nick Crews2020-11-235-13/+60
* bpo-28850: Fix PrettyPrinter.format overrides ignored for contents of small c...Irit Katriel2020-11-233-75/+89
* bpo-42328: Fix tkinter.ttk.Style.map(). (GH-23300)Serhiy Storchaka2020-11-224-28/+111
* bpo-42435: Speed up comparison of bytes and bytearray object (GH--23461)Serhiy Storchaka2020-11-223-33/+14
* Doc: fix typo in typing.Type docs (GH-23460)John Belmonte2020-11-221-1/+1
* bpo-42423: Accept single base class in PyType_FromModuleAndSpec() (GH-23441)Serhiy Storchaka2020-11-227-28/+17
* bpo-42427: Use the errno attribute of OSError instead of args[0] (GH-23449)Serhiy Storchaka2020-11-223-11/+11
* bpo-42391: Clarify documentation of TestCase.assertIs (GH-23348)Ram Rachum2020-11-221-2/+1
* bpo-41116: Ensure system supplied libraries are found on macOS 11 (GH-23301)Ronald Oussoren2020-11-224-30/+38
* bpo-42426: IDLE: Fix reporting offset of the RE error in searchengine (GH-23447)Serhiy Storchaka2020-11-224-9/+11
* bpo-41100: Stripping '-arch arm64' didn't work after all (GH-23280)Ronald Oussoren2020-11-221-2/+2
* bpo-42361: Use Tcl/Tk 8.6.10 when building the installer on recent macOS (GH-...Ronald Oussoren2020-11-221-9/+32
* bpo-38443: Check that the specified universal architectures work (GH-22910)Ronald Oussoren2020-11-223-0/+34
* Clarify that Set._from_iterable is not required to be a classmethod. (GH-23272)Richard Levasseur2020-11-212-1/+57
* bpo-1635741: Port select module to multiphase init (GH-23409)Christian Heimes2020-11-213-85/+110
* bpo-1635741: Port _posixsubprocess module to multiphase init (GH-23406)Christian Heimes2020-11-212-35/+43
* bpo-42425: Fix possible leak in initialization of errmap for OSError (GH-23446)Serhiy Storchaka2020-11-211-1/+3
* bpo-42232: mmap module add Darwin specific madvise options. (GH-23076)David CARLIER2020-11-213-0/+11
* bpo-42412: Fix possible leaks and check arguments in PyType_FromModuleAndSpec...Serhiy Storchaka2020-11-212-7/+22
* bpo-40550: Fix time-of-check/time-of-action issue in subprocess.Popen.send_si...Filipe Laíns2020-11-213-1/+19
* bpo-40791: Make compare_digest more constant-time. (GH-20444)Devin Jeanpierre2020-11-212-1/+2
* bpo-42419: Correct 'deprecatations' is What's New 3.9 (GH-23421)Quentin Hibon2020-11-211-2/+2
* bpo-42407: Use possessive appostrophe in multiprocessing doc (GH-23400)ArioA2020-11-211-1/+1
* bpo-36876: [c-analyzer tool] Tighten up the results and output. (GH-23431)Eric Snow2020-11-2013-109/+3202
* bpo-28002: Roundtrip f-strings with ast.unparse better (#19612)Shantanu2020-11-202-37/+115
* bpo-42360: Add advice to help avoid pickling issues. (GH-23305)Raymond Hettinger2020-11-201-0/+3
* Fix wrong availability for signal.SIGCHLD (#23285)Zhang Maiyun2020-11-201-1/+1
* bpo-35498: Added slice support to PathLib parents attribute. (GH-11165)Joshua Cannon2020-11-206-0/+42
* bpo-42212: Check if generated files are up-to-date in GitHub Actions (GH-23042)Filipe Laíns2020-11-201-0/+28
* bpo-42403: Use @staticmethod in importlib (GH-23395)Victor Stinner2020-11-204-2356/+2355
* bpo-1635741: Convert _sre types to heap types and establish module state (PEP...Erlend Egeberg Aasland2020-11-204-483/+374
* bpo-1635741: Enhance _datetime error handling (GH-23139)Mohamed Koubaa2020-11-201-117/+103
* bpo-42333: Port _ssl extension module to heap types (GH-23392)Christian Heimes2020-11-203-336/+363
* bpo-42413: socket.timeout is now an alias of TimeoutError (GH-23413)Christian Heimes2020-11-2024-62/+72
* bpo-42416: Use inspect.getdoc for IDLE calltips (GH-23416)Terry Jan Reedy2020-11-204-6/+13
* bpo-42345: Add whatsnew and versionchanged for typing.Literal in 3.9 (GH-23386)kj2020-11-192-0/+35
* bpo-42345: Fix hash implementation of typing.Literal (GH-23383)Yurii Karabas2020-11-193-4/+9
* bpo-1635741: Port _posixshmem extension module to multiphase initialization (...Christian Heimes2020-11-192-13/+10
* bpo-1635741: Fix _struct for build bot error (GH-23402)Dong-hee Na2020-11-191-1/+1