summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* build(deps): bump actions/cache from v2.1.2 to v2.1.3dependabot/github_actions/actions/cache-v2.1.3dependabot[bot]2020-12-012-2/+2
* bpo-38200: Add itertools.pairwise() (GH-23549)Raymond Hettinger2020-11-305-26/+220
* bpo-42482: remove reference to exc_traceback from TracebackException (GH-23531)Irit Katriel2020-11-303-3/+25
* bpo-31904: Support signal module on VxWorks (GH-23391)pxinwr2020-11-303-3/+15
* bpo-28468: Add platform.freedesktop_os_release() (GH-23492)Christian Heimes2020-11-305-0/+211
* Refactor the grammar to match the language specification docs (GH-23574)Pablo Galindo2020-11-302-101/+101
* bpo-42485: [Doc] Link to PEP 617 from full grammar specification (GH-23532)James Gerity2020-11-301-1/+2
* bpo-42501: Revise the usage note for Enums with the choices (GH-23563)Raymond Hettinger2020-11-301-14/+3
* bpo-42508: Remove bogus idlelib.pyshell.ModifiedInterpreter attribute (GH-23570)Terry Jan Reedy2020-11-301-1/+1
* bpo-42487: don't call __getitem__ of underlying maps in ChainMap.__iter__ (GH...Andreas Poehlmann2020-11-303-1/+18
* bpo-42451: Indicate that PyTuple_GetItem does not support negative indices (G...Yasser A2020-11-301-1/+1
* bpo-42506: Fix unexpected output in test_format (GH-23564)Zackery Spytz2020-11-301-2/+2
* bpo-42142: Try to fix timeouts in ttk tests (GH-23474)Serhiy Storchaka2020-11-302-19/+7
* bpo-42450: Minor updates to the itertools recipes (GH-23555)Raymond Hettinger2020-11-292-7/+7
* bpo-42406: Fix whichmodule() with multiprocessing (GH-23403)Renato Cunha2020-11-292-1/+6
* bpo-42392: Remove deprecated loop parameter from docs (GH-23552)Yurii Karabas2020-11-295-80/+22
* bpo-39096: Improve description of 'e', 'f' and 'g' presentation types (#23537)Mark Dickinson2020-11-291-12/+31
* bpo-31904: remove libnet dependency from detect_socket() for VxWorks (GH-23394)pxinwr2020-11-282-5/+2
* bpo-31904: skip some tests related to fifo on VxWorks (GH-23473)pxinwr2020-11-283-0/+7
* bpo-31904: add shell requirement for test_pipes (GH-23489)pxinwr2020-11-284-2/+8
* skip test_test of test_mailcap on VxWorks (GH-23507)pxinwr2020-11-282-0/+3
* skip test_getaddrinfo_ipv6_scopeid_symbolic and test_getnameinfo_ipv6_scopeid...pxinwr2020-11-282-0/+3
* Fix an error in the news entry for _posixsubprocess multiphase init (GH-23516)Zackery Spytz2020-11-281-1/+2
* Fix dis markup (GH-23524)Andre Delfino2020-11-281-6/+6
* Fix multiprocessing markup (GH-23525)Andre Delfino2020-11-281-3/+3
* bpo-41818: Fix test_master_read() so that it succeeds on all platforms that e...Soumendra Ganguly2020-11-282-10/+6
* bpo-31904: Fix test_os.test_getcwd_long_path() failure for VxWorks (GH-20256)pxinwr2020-11-282-0/+5
* bpo-42489: Fix the signature for list.sort() in the tutorial (GH-23538)Zackery Spytz2020-11-281-1/+1
* bpo-34215: Clarify IncompleteReadError message when "expected" is None (GH-21...Zackery Spytz2020-11-283-4/+9
* bpo-41241: Unnecessary Type casting in 'if condition' (GH-21396)Wansoo Kim2020-11-281-1/+1
* bpo-42392: Remove loop parameter from asyncio.tasks and asyncio.subprocess (G...Yurii Karabas2020-11-289-158/+66
* bpo-42452: Improve colorsys.rgb_to_hls code (GH-23306)Julien Jerphanion2020-11-281-7/+8
* bpo-42474: test TracebackException comparison to non-equal instances (GH-23522)Irit Katriel2020-11-271-2/+39
* bpo-41818: Make test_openpty() avoid unexpected success due to number of rows...Soumendra Ganguly2020-11-272-19/+11
* bpo-17852: Doc: Fix the tutorial about closing files (GH-23135)Volker-Weissmann2020-11-271-5/+10
* Document optional 'task'/'asyncgen' fields in call_exception_handler (#21735)Shane Harvey2020-11-261-1/+4
* bpo-41332: Added missing connect_accepted_socket() to AbstractEventLoop (GH-2...Alex Grönholm2020-11-263-8/+16
* bpo-42392: Remove loop parameter from asyncio.streams (GH-23517)Yurii Karabas2020-11-266-109/+56
* bpo-41818: test_openpty succeed on Gentoo, don't expect to fail on this platf...Andrew Svetlov2020-11-251-0/+14
* Typo: fix inverted sense of statement (GH-23288)basak2020-11-251-1/+1
* bpo-41818: Updated tests for the standard pty library (GH-22962)Soumendra Ganguly2020-11-252-11/+112
* bpo-42299: Remove formatter module (GH-23476)Dong-hee Na2020-11-257-818/+12
* bpo-42392: Improve removal of *loop* parameter in asyncio primitives (GH-23499)Yurii Karabas2020-11-255-35/+46
* bpo-42202: Store func annotations as a tuple (GH-23316)Yurii Karabas2020-11-258-155/+174
* Add more tests to the descriptor howto guide (GH-23506)Raymond Hettinger2020-11-251-4/+25
* bpo-12800: tarfile: Restore fix from 011525ee9 (GH-21409)Julien Palard2020-11-253-3/+10
* bpo-42238: Doc: Remove make suspicious from the CI and docs builds. (GH-23313)Julien Palard2020-11-255-4/+5
* Doc: Minor fixes (GH-23422)kj2020-11-252-3/+3
* Add doctests to the descriptor HowTo (GH-23500)Raymond Hettinger2020-11-241-57/+397
* bpo-40170: Hide impl detail of Py_TRASHCAN_BEGIN macro (GH-23235)Hai Shi2020-11-243-1/+15