summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Revert "bpo-41919, test_codecs: Move codecs.register calls to setUp() (GH-225...revert-22513-update_test_codecsPablo Galindo2020-10-257-16/+112
* Second round of updates to the descriptor howto guide (GH-22946)Raymond Hettinger2020-10-241-96/+156
* bpo-33987: Add master ttk Frame to IDLE search dialogs (GH-22942)Mark Roseman2020-10-244-14/+25
* bpo-42127: Document effect of cached_property on key-sharing dictionaries (G...Raymond Hettinger2020-10-241-9/+24
* bpo-33987: Use master ttk Frame for IDLE config dialog (GH-22943)Mark Roseman2020-10-241-5/+7
* bpo-33987: Use ttk Label on IDLE statusbar (GH-22941)Mark Roseman2020-10-241-2/+1
* bpo-35823: Allow setsid() after vfork() on Linux. (GH-22945)Gregory P. Smith2020-10-241-2/+3
* bpo-41052: Fix pickling heap types implemented in C with protocols 0 and 1 (G...Serhiy Storchaka2020-10-249-167/+27
* bpo-35823: subprocess: Fix handling of pthread_sigmask() errors (GH-22944)Alexey Izbyshev2020-10-241-4/+15
* [doc] Fix link to abc.ABCMeta.register in Glossary (GH-22932)Andre Delfino2020-10-241-1/+1
* Automatically add skip news and skip issue label to dependabot PRs (GH-22927)Mariatta2020-10-241-0/+3
* bpo-42139: Update What's New 3.9 for master (#22936)Terry Jan Reedy2020-10-231-65/+299
* bpo-19072: Update descriptor howto for decorator chaining (GH-22934)Raymond Hettinger2020-10-231-3/+13
* Mention in "What's New" that the import system is starting to be cleaned up (...Brett Cannon2020-10-231-0/+17
* bpo-35823: subprocess: Use vfork() instead of fork() on Linux when safe (GH-1...Alexey Izbyshev2020-10-235-29/+204
* bpo-38976: Add support for HTTP Only flag in MozillaCookieJar (#17471)Jacob Neil Taylor2020-10-233-14/+35
* build(deps): bump actions/upload-artifact from v1 to v2.2.0 (GH-22920)dependabot[bot]2020-10-231-1/+1
* build(deps): bump actions/cache from v1 to v2.1.2 (GH-22919)dependabot[bot]2020-10-232-2/+2
* Allow dependabot to check GitHub actions monthly (GH-22787)John Losito2020-10-231-0/+6
* Create a primer section for the descriptor howto guide (GH-22906)Raymond Hettinger2020-10-233-59/+499
* Add GitHub sponsor info for Python (GH-22887)Mariatta2020-10-231-0/+1
* Add Mark Shannon to CODEOWNERS. (#22914)Mark Shannon2020-10-231-2/+8
* bpo-40592: shutil.which will not return None anymore if ; is the last char in...Christopher Marchfelder2020-10-233-1/+24
* bpo-36876: Fix the C analyzer tool. (GH-22841)Eric Snow2020-10-2292-10553/+8882
* bpo-38486: Fix dead qmail links in the mailbox docs (GH-22239)Zackery Spytz2020-10-221-10/+4
* bpo-33987: IDLE: Use ttk Frame on doc window and statusbar (GH-11433)Cheryl Sabella2020-10-222-5/+9
* Add CODEOWNERS for the Grammar file (GH-22898)Lysandros Nikolaou2020-10-221-0/+1
* bpo-38980: Only apply -fno-semantic-interposition if available (GH-22892)Petr Viktorin2020-10-223-0/+92
* bpo-42086: Document AST operator nodes acts as a singleton (GH-22896)Batuhan Taskaya2020-10-221-0/+7
* bpo-42057: Add regression test to master. (GH-22893)Mark Shannon2020-10-231-0/+6
* bpo-25655: Improve Win DLL loading failures doc (GH-22372)Philippe Ombredanne2020-10-221-0/+15
* Remove 3.5 from Doc version switcher in master. (#22886)larryhastings2020-10-222-2/+0
* bpo-1635741: Fix NULL ptr deref in multiprocessing (GH-22880)Christian Heimes2020-10-221-1/+0
* _testmultiphase: Fix possible ref leak (GH-22881)Dong-hee Na2020-10-221-0/+4
* Delete TaskWakeupMethWrapper_Type and use PyCFunction instead (#22875)Vladimir Matveev2020-10-211-94/+8
* bpo-41910: specify the default implementations of object.__eq__ and object.__...Brett Cannon2020-10-212-6/+9
* bpo-38980: Add -fno-semantic-interposition when building with optimizations (...datetime_backport_testPablo Galindo2020-10-214-0/+27
* bpo-35181: Correct importlib documentation for some module attributes (GH-15190)Géry Ogam2020-10-212-21/+11
* Fix bpo-39416: Change "Numeric" to lower case; an english word, not a class n...kpinc2020-10-211-1/+1
* bpo-41746: Cast to typed seqs in CHECK macros to avoid type erasure (GH-22864)Lysandros Nikolaou2020-10-213-79/+98
* bpo-41959: Fix grammar around class asyncio.MultiLoopChildWatcher text (GH-22...Raúl Cumplido2020-10-211-1/+1
* bpo-39416: Document some restrictions on the default string representations o...kpinc2020-10-212-0/+19
* bpo-41747: Ensure all dataclass methods uses their parents' qualname (GH-22155)Batuhan Taskaya2020-10-213-2/+36
* Update tzdata to 2020.3 (GH-22856)Paul Ganssle2020-10-211-1/+1
* Doc: Fix a typo/error in the docs for cached bytecode (GH-22445)Zackery Spytz2020-10-211-1/+1
* Doc: Do not suggest `s[::-1]` for reversed order (GH-22457)Andre Delfino2020-10-212-7/+1
* Doc: Remove old Python version from future stmt (GH-21802)Andre Delfino2020-10-211-2/+2
* Doc: Do not encourage using a base class name in a derived class (GH-22177)Andre Delfino2020-10-211-6/+6
* bpo-41902: Micro optimization for range.index if step is 1 (GH-22479)Dong-hee Na2020-10-212-5/+12
* bpo-23706: Add newline parameter to pathlib.Path.write_text (GH-22420) (GH-22...Максим2020-10-204-3/+27