]>
git.ipfire.org Git - thirdparty/Python/cpython.git/log
Miss Islington (bot) [Tue, 5 Oct 2021 12:39:18 +0000 (05:39 -0700)]
bpo-45354: Skip obsolete device name tests on Windows 11 (GH-28712)
(cherry picked from commit
de4052fe0633e3a053e66c8477f13677054d6ede )
Co-authored-by: Jeremy Kloth <jeremy.kloth@gmail.com>
Miss Islington (bot) [Tue, 5 Oct 2021 10:09:21 +0000 (03:09 -0700)]
bpo-45371: Fix distutils' rpath support for clang (GH-28732)
Signed-off-by: Christian Heimes <christian@python.org>
(cherry picked from commit
ef6196028f966f22d82930b66e1371e75c5df2f7 )
Co-authored-by: Christian Heimes <christian@python.org>
John Belmonte [Tue, 5 Oct 2021 06:37:24 +0000 (15:37 +0900)]
[3.9] bpo-44594: fix (Async)ExitStack handling of __context__ (gh-27089) (GH-28731)
Make enter_context(foo()) / enter_async_context(foo()) equivalent to
`[async] with foo()` regarding __context__ when an exception is raised.
Previously exceptions would be caught and re-raised with the wrong
context when explicitly overriding __context__ with None..
(cherry picked from commit
e6d1aa1ac65b6908fdea2c70ec3aa8c4f1dffcb5 )
Co-authored-by: John Belmonte <john@neggie.net>
Automerge-Triggered-By: GH:njsmith
Serhiy Storchaka [Sun, 3 Oct 2021 17:04:38 +0000 (20:04 +0300)]
[3.9] Remove trailing spaces (GH-28710)
Miss Islington (bot) [Sat, 2 Oct 2021 14:15:45 +0000 (07:15 -0700)]
bpo-45341: Replace 'Packaging' with 'Package' in "Python P... Index" (GH-28687) (GH-28689)
pypi.org " The Python Package Index (PyPI) ...
(cherry picked from commit
0be338199fd663f020d833a4db185d0c5a0e0078 )
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Miss Islington (bot) [Fri, 1 Oct 2021 20:46:25 +0000 (13:46 -0700)]
bpo-44687: Ensure BufferedReader objects with unread buffers can peek even when the underlying file is closed (GH-28457)
Co-authored-by: AngstyDuck <solsticedante@gmail.com>
Miss Islington (bot) [Fri, 1 Oct 2021 16:51:15 +0000 (09:51 -0700)]
bpo-41710: PyThread_acquire_lock_timed() uses sem_clockwait() (GH-28671) (GH-28683)
On Unix, if the sem_clockwait() function is available in the C
library (glibc 2.30 and newer), the threading.Lock.acquire() method
now uses the monotonic clock (time.CLOCK_MONOTONIC) for the timeout,
rather than using the system clock (time.CLOCK_REALTIME), to not be
affected by system clock changes.
configure now checks if the sem_clockwait() function is available.
(cherry picked from commit
6df8c327532627d6a99991993c52e8e4a9b34968 )
Co-authored-by: Victor Stinner <vstinner@python.org>
Miss Islington (bot) [Fri, 1 Oct 2021 13:28:19 +0000 (06:28 -0700)]
[3.9] hashlib: Fix old message about unicode objects. (GH-28653) (GH-28679)
(cherry picked from commit
9ce0f48e918860ffa32751a85b0fe7967723e2e3 )
Co-authored-by: Julien Palard <julien@palard.fr>
Serhiy Storchaka [Fri, 1 Oct 2021 09:38:23 +0000 (12:38 +0300)]
[3.9] bpo-45310: Fix parrallel shared memory tests (GH-28661) (GH-28670)
Add a PID to names of POSIX shared memory objects to allow
running multiprocessing tests (test_multiprocessing_fork,
test_multiprocessing_spawn, etc) in parallel.
(cherry picked from commit
eb4495e8e275c83d691add116c4f2b74e73e3cc8 )
Serhiy Storchaka [Fri, 1 Oct 2021 07:58:59 +0000 (10:58 +0300)]
Revert "Revert "bpo-45229: Make datetime tests discoverable (GH-28615). (GH-28645)" (GH-28660)" (GH-28666)
This reverts commit
2cf76cf4ccd177b8d6d2bf21b5462258ae87522d .
Łukasz Langa [Thu, 30 Sep 2021 20:23:32 +0000 (22:23 +0200)]
Revert "bpo-45229: Make datetime tests discoverable (GH-28615). (GH-28645)" (GH-28660)
This reverts commit
993a130d3abe7684dc9c999874b4dd1d8ea55a2a .
Serhiy Storchaka [Thu, 30 Sep 2021 16:58:34 +0000 (19:58 +0300)]
[3.9] bpo-45229: Make datetime tests discoverable (GH-28615). (GH-28645)
(cherry picked from commit
d441437ee71ae174c008c23308b749b91020ba77 )
Serhiy Storchaka [Thu, 30 Sep 2021 16:57:46 +0000 (19:57 +0300)]
[3.9] bpo-40173: Fix test.support.import_helper.import_fresh_module() (GH-28654) (GH-28658)
* Work correctly if an additional fresh module imports other
additional fresh module which imports a blocked module.
* Raises ImportError if the specified module cannot be imported
while all additional fresh modules are successfully imported.
* Support blocking packages.
* Always restore the import state of fresh and blocked modules
and their submodules.
* Fix test_decimal and test_xml_etree which depended on an undesired
side effect of import_fresh_module().
(cherry picked from commit
ec4d917a6a68824f1895f75d113add9410283da7 )
Miss Islington (bot) [Wed, 29 Sep 2021 20:47:58 +0000 (13:47 -0700)]
closes bpo-44751: Move crypt.h include from public header to _cryptmodule (GH-27394)
Automerge-Triggered-By: GH:benjaminp
(cherry picked from commit
196998e220d6ca030e5a1c8ad63fcaed8e049a98 )
Co-authored-by: Geoffrey Thomas <geofft@ldpreload.com>
Miss Islington (bot) [Wed, 29 Sep 2021 15:20:49 +0000 (08:20 -0700)]
[typo] Fix threading.Barrier comment that used confusing punctuation (GH-28623) (GH-28626)
Removed extra comma in comment that indicates state of a `Barrier` as it was confusing and breaking the flow while reading.
Co-authored-by: Priyank <5903604+cpriyank@users.noreply.github.com>
(cherry picked from commit
f1ca5d7f61594bf3627f0897b596877a0774c8e7 )
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
Miss Islington (bot) [Wed, 29 Sep 2021 15:19:47 +0000 (08:19 -0700)]
[typo] s/libexpact/libexpat/ in setup.py (GH-28624) (GH-28627)
(cherry picked from commit
bf5d1684a770af4e4d176bc6780874a4be168cac )
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
Miss Islington (bot) [Wed, 29 Sep 2021 13:47:56 +0000 (06:47 -0700)]
bpo-44394: Ensure libexpat is linked against libm (GH-28617)
(cherry picked from commit
6c1154b9de29e1c9cd3d05f5289543e5cff73895 )
Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
Łukasz Langa [Wed, 29 Sep 2021 10:56:14 +0000 (12:56 +0200)]
[3.9] bpo-39039: tarfile raises descriptive exception from zlib.error (GH-27766) (GH-28614)
* during tarfile parsing, a zlib error indicates invalid data
* tarfile.open now raises a descriptive exception from the zlib error
* this makes it clear to the user that they may be trying to open a
corrupted tar file.
(cherry picked from commit
b6fe8572509b77d2002eaddf99d718e9b4835684 )
Co-authored-by: Jack DeVries <58614260+jdevries3133@users.noreply.github.com>
Miss Islington (bot) [Tue, 28 Sep 2021 21:51:57 +0000 (14:51 -0700)]
bpo-45269: test wrong `markers` type to `c_make_encoder` (GH-28540) (GH-28610)
(cherry picked from commit
e046aabbe386fdf32bae6ffb7fae5ce479fd10c6 )
Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Łukasz Langa [Tue, 28 Sep 2021 21:13:16 +0000 (23:13 +0200)]
[3.9] [docs] Improve the markup of powers (GH-28598) (GH-28608)
(cherry picked from commit
4f05f15d7b25ef8b690cb94fdc4c8cb5521a4e27 )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Miss Islington (bot) [Tue, 28 Sep 2021 20:19:02 +0000 (13:19 -0700)]
bpo-35606: Fix math.prod tests using 'start' as keyword parameter (GH-28595) (GH-28604)
(cherry picked from commit
84975146a7ce64f1d50dcec8311b7f7188a5c962 )
Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
Miss Islington (bot) [Tue, 28 Sep 2021 14:07:20 +0000 (07:07 -0700)]
[doc] fix minor typo for argparse (GH-28451)
"A JSONDecodeError" instead of "An JSONDecodeError".
(cherry picked from commit
db0133f98dd42d0fb82a7675bde175cec51bb860 )
Co-authored-by: Louis Sautier <sautier.louis@gmail.com>
Miss Islington (bot) [Tue, 28 Sep 2021 12:35:04 +0000 (05:35 -0700)]
bpo-45296: Fix exit/quit message on Windows (GH-28577) (GH-28601)
IDLE recognizes Ctrl-D, as on other systems, instead of Ctrl-Z.
(cherry picked from commit
e649e0658ff2af87b07d994c05ae048e16e31aae )
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Victor Stinner [Mon, 27 Sep 2021 21:40:22 +0000 (23:40 +0200)]
bpo-
1596321 : Fix threading._shutdown() for the main thread (GH-28549) (GH-28589)
Fix the threading._shutdown() function when the threading module was
imported first from a thread different than the main thread: no
longer log an error at Python exit.
(cherry picked from commit
95d31370829b7d729667588e0a9943217401ea5b )
Miss Islington (bot) [Mon, 27 Sep 2021 12:49:30 +0000 (05:49 -0700)]
bpo-45274: Fix Thread._wait_for_tstate_lock() race condition (GH-28532)
Fix a race condition in the Thread.join() method of the threading
module. If the function is interrupted by a signal and the signal
handler raises an exception, make sure that the thread remains in a
consistent state to prevent a deadlock.
(cherry picked from commit
a22be4943c119fecf5433d999227ff78fc2e5741 )
Co-authored-by: Victor Stinner <vstinner@python.org>
Miss Islington (bot) [Sun, 26 Sep 2021 17:09:29 +0000 (10:09 -0700)]
bpo-45280: Add test for empty `NamedTuple` in `test_typing` (GH-28559) (GH-28570)
Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
(cherry picked from commit
f56268a2cd38b3fe2be1e4361d3d8b581e73559b )
Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Łukasz Langa [Sat, 25 Sep 2021 09:30:20 +0000 (11:30 +0200)]
[3.9] bpo-45166: fixes `get_type_hints` failure on `Final` (GH-28279) (GH-28561)
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com>.
(cherry picked from commit
784905dbeff68cf788bbeefe0a675af1af04affc )
Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Miss Islington (bot) [Sat, 25 Sep 2021 02:22:54 +0000 (19:22 -0700)]
bpo-45277: Fix typo in codecs doc (GH-28555)
encoding => encode
(cherry picked from commit
4c0fc65cd8a6d4c18330505576ccd4b46abeec1c )
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Miss Islington (bot) [Fri, 24 Sep 2021 10:38:39 +0000 (03:38 -0700)]
bpo-30951: Correct co_names docstring in inspect module (GH-2743) (GH-28544)
(cherry picked from commit
3f8b23f8ddab75d9b77a3997d54e663187e12cc8 )
Co-authored-by: Alex Vig <jalexvig@gmail.com>
Miss Islington (bot) [Thu, 23 Sep 2021 22:48:26 +0000 (15:48 -0700)]
bpo-38623: Add note about site module (site-packages) (GH-16974) (GH-28537)
(cherry picked from commit
55b45bf707c6c8084db259fe2f8aa08e84ea0d99 )
Co-authored-by: Peter Bittner <django@bittner.it>
Miss Islington (bot) [Thu, 23 Sep 2021 21:39:08 +0000 (14:39 -0700)]
[docs] Update documentation for `multiprocessing.get_start_method` (GH-18170) (GH-28534)
(cherry picked from commit
af90b5498b8c6acd67b50fdad007d26dfd1c5823 )
Co-authored-by: Sam Sneddon <me@gsnedders.com>
Miss Islington (bot) [Thu, 23 Sep 2021 15:42:31 +0000 (08:42 -0700)]
[3.9] Fix legacy logging module URL (GH-28528) (GH-28531)
Co-authored-by: Sean Leavey <SeanDS@users.noreply.github.com>
Miss Islington (bot) [Thu, 23 Sep 2021 10:25:57 +0000 (03:25 -0700)]
bpo-41203: Replace Mac OS X and OS X with macOS (GH-28515) (GH-28524)
Replace old names when they refer to actual versions of macOS.
Keep historical names in references to older versions.
Co-authored-by: Patrick Reader <_@pxeger.com>
(cherry picked from commit
36122e18148c5b6c78ebce1d36d514fd7cf250f5 )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Łukasz Langa [Wed, 22 Sep 2021 16:48:17 +0000 (18:48 +0200)]
[3.9] bpo-45238: Fix unittest.IsolatedAsyncioTestCase.debug() (GH-28449) (GH-28522)
It runs now asynchronous methods and callbacks.
If it fails, doCleanups() can be called for cleaning up..
(cherry picked from commit
ecb6922ff2d56476a6cfb0941ae55aca5e7fae3d )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Łukasz Langa [Wed, 22 Sep 2021 15:32:04 +0000 (17:32 +0200)]
[3.9] [codemod] Fix non-matching bracket pairs (GH-28473) (GH-28512)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Łukasz Langa <lukasz@langa.pl>.
(cherry picked from commit
8f943ca25732d548cf9f0b0393ba8d582fb93e29 )
Co-authored-by: Mohamad Mansour <66031317+mohamadmansourX@users.noreply.github.com>
Miss Islington (bot) [Tue, 21 Sep 2021 22:21:10 +0000 (15:21 -0700)]
bpo-45234: Fix FileNotFound exception raised instead of IsADirectoryError in shutil.copyfile() (GH-28421) (GH-28507)
This was a regression from fixing BPO-43219.
(cherry picked from commit
b7eac52b466f697d3e89f47508e0df0196a98970 )
Co-authored-by: andrei kulakov <andrei.avk@gmail.com>
Miss Islington (bot) [Tue, 21 Sep 2021 21:57:49 +0000 (14:57 -0700)]
bpo-45216: Remove extraneous method docs from `difflib` (GH-28445) (GH-28506)
(cherry picked from commit
06e1773c8d8fe375423bb7fcf5922b49bc737b75 )
Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Miss Islington (bot) [Tue, 21 Sep 2021 18:37:04 +0000 (11:37 -0700)]
bpo-45209: fix `UserWarning: resource_tracker` in test_multiprocessing (GH-28377) (GH-28500)
(cherry picked from commit
f604cf1c377a7648e0686044e6e49900bfc9feef )
Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Miss Islington (bot) [Tue, 21 Sep 2021 17:53:26 +0000 (10:53 -0700)]
bpo-45246: Document that sorted() only uses "<" comparisons (GH-28494)
(cherry picked from commit
9a0dcc5b2e04d9c51350107734f12a1cbc0284a7 )
Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
Miss Islington (bot) [Mon, 20 Sep 2021 18:54:24 +0000 (11:54 -0700)]
[3.9] bpo-45021: Fix a hang in forked children (GH-28007) (GH-28481)
_global_shutdown_lock should be reinitialized in forked children
(cherry picked from commit
0bfa1106acfcddc03590e1f5d6789dbad3affe70 )
Co-authored-by: nullptr <3621629+0x0L@users.noreply.github.com>
Automerge-Triggered-By: GH:gpshead
Miss Islington (bot) [Mon, 20 Sep 2021 16:19:49 +0000 (09:19 -0700)]
bpo-45229: Make pickle tests discoverable (GH-28467) (GH-28479)
(cherry picked from commit
e6ba992288fdbe71aa808cfb6955f6f99da7e349 )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Miss Islington (bot) [Mon, 20 Sep 2021 15:51:32 +0000 (08:51 -0700)]
bpo-40413: test_embed tests calling Py_RunMain() multiple times (GH-28466) (GH-28471)
Calling Py_InitializeFromConfig()+Py_RunMain() multiple times must
not crash.
Cleanup also test_get_argc_argv().
(cherry picked from commit
5e2c32e08ed77081cabd9d51f0589f81c1572732 )
Co-authored-by: Victor Stinner <vstinner@python.org>
Miss Islington (bot) [Mon, 20 Sep 2021 14:59:15 +0000 (07:59 -0700)]
bpo-45055: Add retry when downloading externals on Windows (GH-28399)
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
(cherry picked from commit
ef9e22b253253615098d22cb49141a2a1024ee3c )
Co-authored-by: Steve Dower <steve.dower@python.org>
Serhiy Storchaka [Mon, 20 Sep 2021 06:34:52 +0000 (09:34 +0300)]
[3.9] bpo-45229: Remove test_main in many tests (GH-28405) (GH-28456)
Instead of explicitly enumerate test classes for run_unittest()
use the unittest ability to discover tests. This also makes these
tests discoverable and runnable with unittest.
load_tests() can be used for dynamic generating tests and adding
doctests. setUpModule(), tearDownModule() and addModuleCleanup()
can be used for running code before and after all module tests..
(cherry picked from commit
40348acc180580371d25f75f46b27048e35f2435 )
Miss Islington (bot) [Sun, 19 Sep 2021 23:13:56 +0000 (16:13 -0700)]
bpo-30637: Improve the docs of ast.parse regarding differences with compile() (GH-28459)
(cherry picked from commit
e6d05a4092b4176a30d1d1596585df13c2ab676d )
Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
Miss Islington (bot) [Sat, 18 Sep 2021 13:22:40 +0000 (06:22 -0700)]
bpo-36674: Honour the skipping decorators in TestCase.debug() (GH-28446)
unittest.TestCase.debug() raises now a SkipTest if the class or
the test method are decorated with the skipping decorator.
Previously it only raised a SkipTest if the test method was decorated
with other decorator in addition to the skipping decorator, or
if SkipTest was explicitly raised in the test or setup methods.
(cherry picked from commit
dea59cf88adf5d20812edda330e085a4695baba4 )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Miss Islington (bot) [Sat, 18 Sep 2021 06:47:41 +0000 (23:47 -0700)]
bpo-45235: Fix argparse overrides namespace with subparser defaults (GH-28420) (GH-28443)
Miss Islington (bot) [Sat, 18 Sep 2021 02:12:25 +0000 (19:12 -0700)]
[3.9] Fix minor typo in Doc/c-api/type.rst (GH-28432) (GH-28441)
retreived-> retrieved
(cherry picked from commit
af08f1ba40505bf1380c08b57ba4e0b8969a8358 )
Co-authored-by: Konstantin Popov <konst.hardy@gmail.com>
Automerge-Triggered-By: GH:Fidget-Spinner
Miss Islington (bot) [Fri, 17 Sep 2021 23:23:38 +0000 (16:23 -0700)]
[doc] Clarify exception in `multiprocessing.cpu_count` (GH-23660) (GH-28434)
Previous wording didn't explain the slightly unintuitive behavior.
Co-authored-by: kj <28750310+Fidget-Spinner@users.noreply.github.com>
(cherry picked from commit
24dbe30f8df80740704db3743d071b3218d1276e )
Co-authored-by: Emmanuel Arias <eamanu@yaerobi.com>
Miss Islington (bot) [Fri, 17 Sep 2021 22:56:26 +0000 (15:56 -0700)]
bpo-42038: fix description of returned list of lines (GH-27529) (GH-28429)
Co-authored-by: andrei kulakov <andrei.avk@gmail.com>
Miss Islington (bot) [Fri, 17 Sep 2021 22:55:37 +0000 (15:55 -0700)]
Fix missing space with help for `-m compileall -o` (GH-27591) (GH-28431)
(cherry picked from commit
74cc2453ae690be940cddfae8caf8216d8628c4a )
Co-authored-by: Daniel Hahler <git@thequod.de>
Miss Islington (bot) [Fri, 17 Sep 2021 22:18:19 +0000 (15:18 -0700)]
[doc] Add a missing apostrophe in a code example in venv.rst (GH-28391) (GH-28426)
(cherry picked from commit
d22a700091af35ce52db0b1fbb02115bb6efbb1f )
Co-authored-by: Arkaprabha Chakraborty <chakrabortyarkaprabha998@gmail.com>
Miss Islington (bot) [Fri, 17 Sep 2021 19:40:33 +0000 (12:40 -0700)]
bpo-45187: Fix dangling threads in test_socket.CreateServerFunctionalTest (GH-28422) (GH-28424)
(cherry picked from commit
51ebb7f4f5e9bdcf8279a1d91be9569706f6bead )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Łukasz Langa [Fri, 17 Sep 2021 11:48:54 +0000 (13:48 +0200)]
[3.9] bpo-45187: Collect test_socket tests using unittest (GH-28317) (GH-28413)
Previously, test classes ISOTPTest, J1939Test, BasicUDPLITETest and
UDPLITETimeoutTest were not included in the list of tests and
were not run by regrtest..
(cherry picked from commit
0361335b80b435ca3694981b41f8269e390eb892 )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Miss Islington (bot) [Fri, 17 Sep 2021 11:41:25 +0000 (04:41 -0700)]
bpo-45217: adds note that `allow_no_value` in `configparser` is optional (GH-28396) (GH-28416)
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
(cherry picked from commit
cb07838ab756564988b1ffd23871f1222a832446 )
Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Serhiy Storchaka [Fri, 17 Sep 2021 11:14:27 +0000 (14:14 +0300)]
[3.9] docs: correct references to __isub__ etc (GH-28297). (GH-28415)
(cherry picked from commit
800bd01b6d365156403c3dde61765dc5fdbf64be )
Co-authored-by: David Hewitt <1939362+davidhewitt@users.noreply.github.com>
Serhiy Storchaka [Fri, 17 Sep 2021 10:11:50 +0000 (13:11 +0300)]
[3.9] bpo-45212: Fix dangling threads in skipped tests in test_socket (GH-28361) (GH-28408)
tearDown() is not called if setUp() raises an exception
(including SkipTest). addCleanup() should be used for guaranteed
execution of the cleanup code.
(cherry picked from commit
7dacb70485a0910eb298c24b4d051720ca56fb91 )
Miss Islington (bot) [Fri, 17 Sep 2021 09:10:55 +0000 (02:10 -0700)]
bpo-45228: Fix stack buffer overflow in parsing J1939 address (GH-28404)
(cherry picked from commit
773319545ba60577bc140aa46eac83b360240b7a )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Miss Islington (bot) [Thu, 16 Sep 2021 18:54:25 +0000 (11:54 -0700)]
bpo-45220: Avoid automatically selecting the Windows 11 SDK preview when building (GH-28393)
(cherry picked from commit
f4b94b1f57827083990272b5f282aa1493ae2bf4 )
Co-authored-by: Steve Dower <steve.dower@python.org>
Victor Stinner [Thu, 16 Sep 2021 07:53:02 +0000 (09:53 +0200)]
bpo-45208: Make test_pdb.test_checkline_is_not_executable() quiet (GH-28354) (GH-28381)
test_pdb.test_checkline_is_not_executable() no longer writes output
to stdout.
Remove also unused variables 'f'.
(cherry picked from commit
e08e491a6ceea8ca105612df10147418c4e105b8 )
Miss Islington (bot) [Wed, 15 Sep 2021 19:33:52 +0000 (12:33 -0700)]
bpo-45205: Make test_compileall quiet (GH-28356) (GH-28364)
Make test_compileall quiet: test_year_2038_mtime_compilation() and
test_larger_than_32_bit_times() of test_compileall no longer log
"Compiling ..." messages to stdout.
(cherry picked from commit
cc057ff5227b3a4ded637caa7ba51b67b06abaaa )
Co-authored-by: Victor Stinner <vstinner@python.org>
Miss Islington (bot) [Wed, 15 Sep 2021 19:31:14 +0000 (12:31 -0700)]
bpo-45167: Fix deepcopying of GenericAlias (GH-28324) (GH-28368)
(cherry picked from commit
5dce51a8875d9639786741e962b3cb208596b096 )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Miss Islington (bot) [Wed, 15 Sep 2021 19:11:21 +0000 (12:11 -0700)]
bpo-45207: Make test_gdb.test_pycfunction() quiet (GH-28355) (GH-28366)
test_gdb.test_pycfunction() now ignores gdb stderr, it no longer logs
messages like:
Function "meth_varargs" not defined.
(cherry picked from commit
84a6061e29e9dc13909bdf6f541f48c2a4f1d410 )
Co-authored-by: Victor Stinner <vstinner@python.org>
Miss Islington (bot) [Wed, 15 Sep 2021 19:09:27 +0000 (12:09 -0700)]
bpo-45089: Improve sqlite3 trace callback docs (GH-28238) (GH-28372)
- Add link to str object and sqlite3 transaction control
- Mention that exceptions are not propagated
(cherry picked from commit
51056b40e711d84692d099ac8970077b33c7fafd )
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
Miss Islington (bot) [Wed, 15 Sep 2021 12:38:57 +0000 (05:38 -0700)]
bpo-45195: Fix test_readline.test_nonascii() (GH-28329) (GH-28334)
Fix test_readline.test_nonascii(): sometimes, the newline character
is not written at the end, so don't expect it in the output.
(cherry picked from commit
797c8eb9ef511f0c25f10a453b35c4d2fe383c30 )
Co-authored-by: Victor Stinner <vstinner@python.org>
Miss Islington (bot) [Wed, 15 Sep 2021 07:34:19 +0000 (00:34 -0700)]
bpo-45020: Don't test IDLE with frozen module. (GH-28344)
Otherwise, test would need special import.
(cherry picked from commit
369bf949ccbb689cd4638b29b4c0c12db79b927c )
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Miss Islington (bot) [Tue, 14 Sep 2021 18:54:27 +0000 (11:54 -0700)]
bpo-45196: prevent unittest crash on address sanitizer builds (GH-28331)
(cherry picked from commit
b668cdfa09e9bdfcfddaadd23dbd455d5f667383 )
Co-authored-by: junyixie <xiejunyi.arch@bytedance.com>
Miss Islington (bot) [Tue, 14 Sep 2021 10:50:28 +0000 (03:50 -0700)]
bpo-45156: Fixes inifite loop on unittest.mock.seal() (GH-28300)
Fixes infinite loop on unittest.mock.seal() of mocks created by
unittest.create_autospec().
Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
(cherry picked from commit
7f60c9e1c6e22cc0e846a872c318570926cd3094 )
Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Miss Islington (bot) [Mon, 13 Sep 2021 17:24:08 +0000 (10:24 -0700)]
bpo-35474: Fix mimetypes.guess_all_extensions() potentially mutating list (GH-28286) (GH-28290)
* Calling guess_all_extensions() with strict=False potentially
mutated types_map_inv.
* Mutating the result of guess_all_extensions() mutated types_map_inv.
(cherry picked from commit
97ea18ecede8bfd33d5ab2dd0e7e2aada2051111 )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Miss Islington (bot) [Mon, 13 Sep 2021 17:08:35 +0000 (10:08 -0700)]
bpo-45182: Fix incorrect use of requires_zlib in test_bdist_rpm (GH-28305)
It is a decorator factory and should be always followed by "()".
(cherry picked from commit
9260e6739865c966c3ec6c5c289e0b96f848403e )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Miss Islington (bot) [Mon, 13 Sep 2021 04:07:32 +0000 (21:07 -0700)]
[3.10] bpo-45126: Fix ref. leak in `sqlite3.Connection.__init__` (GH-28231). (GH-28298)
(cherry picked from commit
aa6dd54d43dffbdf883c083e361f6ccf8642d66e )
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
Miss Islington (bot) [Fri, 10 Sep 2021 22:22:54 +0000 (15:22 -0700)]
IDLE: adjust Python version in doc url for 3.10+ (GH-28228) (GH-28282)
Expression 'python_version()[:3]' truncated '3.10.0' to '3.1' instead of '3.10'.
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
(cherry picked from commit
b74c819fab86bedc9b962ea42cfb9b5893fd2dda )
Co-authored-by: giovanniwijaya <16949408+giovanniwijaya@users.noreply.github.com>
Miss Islington (bot) [Fri, 10 Sep 2021 19:53:34 +0000 (12:53 -0700)]
bpo-9811: [doc] strftime handling of unsupported format specifiers is platform dependent (GH-28264) (GH-28278)
(cherry picked from commit
e86bcfa58080f152f242c756f625f4015671f168 )
Co-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com>
Miss Islington (bot) [Fri, 10 Sep 2021 16:22:24 +0000 (09:22 -0700)]
bpo-44219: Mention GH-28250 is a deadlock bugfix (GH-28261) (GH-28275)
(cherry picked from commit
296b7100705ef52aece3378b0ae42c33a58526e1 )
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
Miss Islington (bot) [Fri, 10 Sep 2021 15:11:46 +0000 (08:11 -0700)]
[3.9] Fix typos in pep384_macrocheck.py (GH-28220) (GH-28273)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com>
(cherry picked from commit
4338aeeb9e07607f17bbada8ebfd97e7cc7a203c )
Co-authored-by: Ikko Ashimine <eltociear@gmail.com>
Automerge-Triggered-By: GH:Fidget-Spinner
Miss Islington (bot) [Thu, 9 Sep 2021 13:40:42 +0000 (06:40 -0700)]
bpo-44219: Release the GIL during isatty syscalls (GH-28250)
Release the GIL while performing isatty() system calls on arbitrary
file descriptors. In particular, this affects os.isatty(),
os.device_encoding() and io.TextIOWrapper. By extension,
io.open() in text mode is also affected.
(cherry picked from commit
06148b1870fceb1a21738761b8e1ac3bf654319b )
Co-authored-by: Vincent Michel <vxgmichel@gmail.com>
andrei kulakov [Wed, 8 Sep 2021 17:24:09 +0000 (13:24 -0400)]
[3.9] bpo-41082: Add note on errors that may be raised by home() and expanduser() (GH-28186)
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
Łukasz Langa [Wed, 8 Sep 2021 17:01:25 +0000 (19:01 +0200)]
[3.9] bpo-38820: Test with OpenSSL 3.0.0 final (GH-28205) (GH-28217)
Signed-off-by: Christian Heimes <christian@python.org>.
(cherry picked from commit
cc7c6801945c6a7373553b78bd899ce09681ec0a )
Co-authored-by: Christian Heimes <christian@python.org>
Serhiy Storchaka [Wed, 8 Sep 2021 15:59:40 +0000 (18:59 +0300)]
[3.9] bpo-45097: Fix deprecation warnings in test_asyncio (GH-28236)
Ken Jin [Wed, 8 Sep 2021 15:01:51 +0000 (23:01 +0800)]
[3.9] bpo-45121: Fix RecursionError when calling Protocol.__init__ from a subclass' __init__ (GH-28206) (GH-28233)
Co-authored-by: Yurii Karabas <1998uriyyo@gmail.com>
Miss Islington (bot) [Tue, 7 Sep 2021 18:45:57 +0000 (11:45 -0700)]
Remove documentation for non-existing socket class attributes (GH-28029) (GH-28221)
The functions in question are available on the module-level only.
(cherry picked from commit
34d82ce7cb82a8f5e2e83417d66d9aa319f3bb69 )
Co-authored-by: Matti Picus <matti.picus@gmail.com>
Miss Islington (bot) [Tue, 7 Sep 2021 18:43:42 +0000 (11:43 -0700)]
bpo-24888: Clarify subprocess.check_call propagates exceptions if unable to start process (GH-28018) (GH-28223)
(cherry picked from commit
19a304ba990481f0381a5316096b6b3cf2dff381 )
Co-authored-by: DonnaDia <37962843+DonnaDia@users.noreply.github.com>
Pablo Galindo Salgado [Tue, 7 Sep 2021 17:30:48 +0000 (18:30 +0100)]
Check that 'configure' is generated by GNU Autoconf 2.69 (GH-28156)
Miss Islington (bot) [Tue, 7 Sep 2021 17:21:19 +0000 (10:21 -0700)]
bpo-45118: Fix regrtest second summary for re-run tests (GH-28183) (GH-28215)
Fix regrtest second summary when using -w/--verbose2 command line
option: lists re-run tests in the second test summary.
(cherry picked from commit
c4ea45d7d2c02674db2fdb96c7eee89324d2dc64 )
Co-authored-by: Victor Stinner <vstinner@python.org>
Miss Islington (bot) [Tue, 7 Sep 2021 16:27:28 +0000 (09:27 -0700)]
bpo-45104: Clarify when __init__ is called (GH-28210) (GH-28212)
(cherry picked from commit
fa15df77f02ba4a66ba0b71989381a426038be01 )
Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
Miss Islington (bot) [Tue, 7 Sep 2021 05:29:06 +0000 (22:29 -0700)]
[3.8] Update idlelib/help.html to include idle.rst spelling fix (GH-28191) (GH-28193)
The idle.rst fix was GH-27903 two weeks ago.
(cherry picked from commit
f05ad9202896f21ca9717f5c9f4b933b7f5b6550 )
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Miss Islington (bot) [Sun, 5 Sep 2021 07:56:24 +0000 (00:56 -0700)]
bpo-45102: unittest: add tests for skipping and errors in cleanup (GH-28166)
(cherry picked from commit
28264269de9ff88d9ee7110fc56ac2d2db275bec )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Serhiy Storchaka [Sun, 5 Sep 2021 06:41:33 +0000 (09:41 +0300)]
[3.9] bpo-45042: Now test classes decorated with `requires_hashdigest` are not skipped (GH-28060) (GH-28169)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>.
(cherry picked from commit
dd7b816ac87e468e2fa65ce83c2a03fe1da8503e )
Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Miss Islington (bot) [Sat, 4 Sep 2021 20:39:47 +0000 (13:39 -0700)]
bpo-45030: Fix integer overflow in __reduce__ of the range iterator (GH-28000)
It happened with fast range iterator when the calculated stop = start + step * len
was out of the C long range.
(cherry picked from commit
936f6a16b9ef85bd56b18a247b962801e954c30e )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Serhiy Storchaka [Sat, 4 Sep 2021 17:54:50 +0000 (20:54 +0300)]
[3.9] bpo-45097: Remove incorrect deprecation warnings in asyncio. (GH-28153)
Deprecation warnings about the loop argument were incorrectly emitted
in cases when the loop argument was used inside the asyncio library,
not from user code.
Dong-hee Na [Fri, 3 Sep 2021 17:22:01 +0000 (17:22 +0000)]
bpo-42255: Update webbrowser doc for macOS (GH-28145)
Miss Islington (bot) [Fri, 3 Sep 2021 16:56:05 +0000 (09:56 -0700)]
[3.9] bpo-45083: Include the exception class qualname when formatting an exception (GH-28119) (GH-28135)
* bpo-45083: Include the exception class qualname when formatting an exception (GH-28119)
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
(cherry picked from commit
b4b6342848ec0459182a992151099252434cc619 )
Co-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com>
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
Miss Islington (bot) [Thu, 2 Sep 2021 17:01:32 +0000 (10:01 -0700)]
bpo-45081: Fix __init__ method generation when inheriting from Protocol (GH-28121) (GH-28132)
Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com>
(cherry picked from commit
0635e201beaf52373f776ff32702795e38f43ae3 )
Co-authored-by: Yurii Karabas <1998uriyyo@gmail.com>
Miss Islington (bot) [Thu, 2 Sep 2021 15:14:11 +0000 (08:14 -0700)]
[doc] Link to deprecation policy PEP from the DeprecationWarning documentation (GH-28123) (GH-28124)
(cherry picked from commit
a7ef15aae8608560bffeeaba412c10e52cab07dd )
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
Serhiy Storchaka [Wed, 1 Sep 2021 06:51:01 +0000 (09:51 +0300)]
[3.9] bpo-45060: Get rid of few uses of the equality operators with None (GH-28087). (GH-28093)
(cherry picked from commit
3c65457156d87e55010507d616b4eecb7a02883d )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Serhiy Storchaka [Wed, 1 Sep 2021 06:45:09 +0000 (09:45 +0300)]
[3.9] bpo-45057: Simplify RegressionTestResult (GH-28081) (GH-28103)
Remove code which duplicates the functionality of TextTestResult.
(cherry picked from commit
2b76a5322fdf71d62b531fd765085f96f981c244 )
Miss Islington (bot) [Tue, 31 Aug 2021 19:24:48 +0000 (12:24 -0700)]
bpo-45059: Add module cleanup to IDLE test_macosx (GH-28102)
(cherry picked from commit
22fe0eb13c3441b71b60aaea0e7fe289a29783da )
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Miss Islington (bot) [Tue, 31 Aug 2021 17:53:42 +0000 (10:53 -0700)]
bpo-45059: Fix IDLE test typo: using "==" instead of "=" (GH-28086)
(cherry picked from commit
54f100514b02f6628450043e21ccfe39350d7ac7 )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Łukasz Langa [Tue, 31 Aug 2021 16:00:16 +0000 (18:00 +0200)]
bpo-44135: Refine explanation of how passing tuples to issubclass() behaves (GH-26193) (GH-28094)
This is a quasi-backport to 3.9 since the wording in this branch is different.
Co-authored-by: Zachary Kneupper zachary.kneupper@gmail.com
Łukasz Langa [Mon, 30 Aug 2021 21:55:37 +0000 (23:55 +0200)]
Post 3.9.7