]> git.ipfire.org Git - thirdparty/Python/cpython.git/log
thirdparty/Python/cpython.git
7 years agobpo-34162: idlelib/NEWS.txt entries to 2018-7-20 (GH-8345) (GH-8347)
Terry Jan Reedy [Fri, 20 Jul 2018 06:48:17 +0000 (02:48 -0400)] 
bpo-34162: idlelib/NEWS.txt entries to 2018-7-20 (GH-8345) (GH-8347)

Cherry-picked from 2c5c0a3

7 years ago[3.7] Enable GUI testing on Travis Linux builds via Xvfb (GH-7887)
Zachary Ware [Fri, 20 Jul 2018 02:50:52 +0000 (21:50 -0500)] 
[3.7] Enable GUI testing on Travis Linux builds via Xvfb (GH-7887)

(cherry picked from commit b12112b5ba608cdd7a0962a6b18cad4fe58b46e6)

7 years agobpo-32692: Fix test_threading.test_set_and_clear() (GH-8331)
Miss Islington (bot) [Thu, 19 Jul 2018 09:27:42 +0000 (02:27 -0700)] 
bpo-32692: Fix test_threading.test_set_and_clear() (GH-8331)

Increase the timeout: give timeout x 4 instead of timeout x 2 to
threads to wait until the Event is set, but reduce the sleep from 500
ms to 250 ms. So the test should be more reliable and faster!
(cherry picked from commit 81950495ba2c36056e0ce48fd37d514816c26747)

Co-authored-by: Victor Stinner <vstinner@redhat.com>
7 years ago[3.7] bpo-34130: Fix 2 race conditions in test_signal (GH-8329)
Victor Stinner [Wed, 18 Jul 2018 16:49:27 +0000 (18:49 +0200)] 
[3.7] bpo-34130: Fix 2 race conditions in test_signal (GH-8329)

* bpo-34130: Fix test_signal.test_socket() (GH-8326)

test_signal.test_socket(): On Windows, sometimes even if the C signal handler
succeed to write the signal number into the write end of the socketpair, the
test fails with a BlockingIOError on the non-blocking read.recv(1) because the
read end of the socketpair didn't receive the byte yet.

Fix the race condition on Windows by setting the read end as blocking.

(cherry picked from commit 99bb6df66a42625367c4f38e6802c8bb527baf4a)

* bpo-34130: Fix test_signal.test_warn_on_full_buffer() (GH-8327)

On Windows, sometimes test_signal.test_warn_on_full_buffer() fails to
fill the socketpair buffer. In that case, the C signal handler
succeed to write into the socket, it doesn't log the expected send
error, and so the test fail.

On Windows, the test now uses a timeout of 50 ms to fill the
socketpair buffer to fix this race condition.

Other changes:

* Begin with large chunk size to fill the buffer to speed up the
  test.
* Add error messages to assertion errors to more easily identify
  which assertion failed.
* Don't set the read end of the socketpair as non-blocking.

(cherry picked from commit 686b4b5ff219ed66714f3b811815776dafadc23b)

7 years agoClarify ValueError's broad applicability (GH-8313) (GH-8315)
Miss Islington (bot) [Tue, 17 Jul 2018 20:22:50 +0000 (13:22 -0700)] 
Clarify ValueError's broad applicability (GH-8313) (GH-8315)

(cherry picked from commit feabae961707b00008c15a31352e458f4e8b3a6c)

Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
7 years agobpo-34068: _io__IOBase_close_impl could call _PyObject_SetAttrId with an exception...
Miss Islington (bot) [Tue, 17 Jul 2018 07:09:32 +0000 (00:09 -0700)] 
bpo-34068: _io__IOBase_close_impl could call _PyObject_SetAttrId with an exception set (GH-8282)

(cherry picked from commit 28f07364f066792ceee93231dbb80ae8ad98b2bb)

Co-authored-by: Zackery Spytz <zspytz@gmail.com>
7 years agobpo-33967: Fix wrong use of assertRaises (GH-8306)
Miss Islington (bot) [Tue, 17 Jul 2018 05:18:56 +0000 (22:18 -0700)] 
bpo-33967: Fix wrong use of assertRaises (GH-8306)

(cherry picked from commit 56d8f57b83a37b05a6f2fbc3e141bbc1ba6cb3a2)

Co-authored-by: INADA Naoki <methane@users.noreply.github.com>
7 years agobpo-34123: Fix missed documentation update for dict.popitem(). (GH-8292) (GH#8307)
Miss Islington (bot) [Tue, 17 Jul 2018 02:08:13 +0000 (19:08 -0700)] 
bpo-34123: Fix missed documentation update for dict.popitem(). (GH-8292) (GH#8307)

7 years agobpo-34124: Fix markup of message_from_binary_file() signature (GH-8297)
Miss Islington (bot) [Mon, 16 Jul 2018 18:43:41 +0000 (11:43 -0700)] 
bpo-34124: Fix markup of message_from_binary_file() signature (GH-8297)

(cherry picked from commit c9265c1534b7e62bb9b15460d0420c0c3bb57ff9)

Co-authored-by: Jon Ribbens <jribbens@gmail.com>
7 years agobpo-33967: Remove use of deprecated assertRaisesRegexp() (GH-8261) (GH-8296)
Miss Islington (bot) [Mon, 16 Jul 2018 09:40:11 +0000 (02:40 -0700)] 
bpo-33967: Remove use of deprecated assertRaisesRegexp() (GH-8261) (GH-8296)

It was added in test_functools at 445f1b3.
(cherry picked from commit 9e9b2c32a34594e901b5b9a03c561a2a2bf63ece)

Co-authored-by: Zackery Spytz <zspytz@gmail.com>
7 years agobpo-33911: Fixed deprecation warning in xmlrpc.server (GH-7847) (GH-8294)
Miss Islington (bot) [Mon, 16 Jul 2018 09:02:23 +0000 (02:02 -0700)] 
bpo-33911: Fixed deprecation warning in xmlrpc.server (GH-7847) (GH-8294)

Replace deprecated inspect.getfullargspec() with inspect.signature().
(cherry picked from commit 35c0809158be7feae4c4f877a08b93baea2d8291)

Co-authored-by: Nicolas Noé <nicolas@niconoe.org>
7 years agobpo-24618: Add a check in the code constructor. (GH-8283)
Miss Islington (bot) [Mon, 16 Jul 2018 07:09:44 +0000 (00:09 -0700)] 
bpo-24618: Add a check in the code constructor. (GH-8283)

Check that the size of the varnames tuple is enough at least for all arguments.
(cherry picked from commit bd47384e07bde38a8f18b90b4cea02a505d95c75)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
7 years agobpo-34121: Fix detection of C11 atomic support on clang. (GH-8288)
Miss Islington (bot) [Mon, 16 Jul 2018 00:44:11 +0000 (17:44 -0700)] 
bpo-34121: Fix detection of C11 atomic support on clang. (GH-8288)

(cherry picked from commit 15c7b2abdfb93f8902dd72474818aee2bf97fa66)

Co-authored-by: Benjamin Peterson <benjamin@python.org>
7 years agobpo-34087: Fix buffer overflow in int(s) and similar functions (GH-8274)
Miss Islington (bot) [Sat, 14 Jul 2018 03:58:12 +0000 (20:58 -0700)] 
bpo-34087: Fix buffer overflow in int(s) and similar functions (GH-8274)

`_PyUnicode_TransformDecimalAndSpaceToASCII()` missed trailing NUL char.
It caused buffer overflow in `_Py_string_to_number_with_underscores()`.

This bug is introduced in 9b6c60cb.
(cherry picked from commit 16dfca4d829e45f36e71bf43f83226659ce49315)

Co-authored-by: INADA Naoki <methane@users.noreply.github.com>
7 years agobpo-34108: Fix double carriage return in 2to3 on Windows (GH-8271) (#8275)
Miss Islington (bot) [Fri, 13 Jul 2018 19:24:19 +0000 (12:24 -0700)] 
bpo-34108: Fix double carriage return in 2to3 on Windows (GH-8271) (#8275)

* Add test capturing failure.
* Honor newlines as present in the original file.
(cherry picked from commit cafaf0447b950fd4f59edd8cbde040c61ae528f8)

Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
7 years agobpo-4260: Document that ctypes.xFUNCTYPE are decorators (GH-7924)
Miss Islington (bot) [Fri, 13 Jul 2018 13:35:31 +0000 (06:35 -0700)] 
bpo-4260: Document that ctypes.xFUNCTYPE are decorators (GH-7924)

(cherry picked from commit 379e9d639a52766f79c7a206c5096c8333d1896f)

Co-authored-by: Andrés Delfino <adelfino@gmail.com>
7 years agobpo-33723: Fix test_time.test_thread_time() (GH-8267)
Miss Islington (bot) [Thu, 12 Jul 2018 14:05:43 +0000 (07:05 -0700)] 
bpo-33723: Fix test_time.test_thread_time() (GH-8267)

The test failed on AMD64 Debian root 3.x buildbot because the busy
loop of 100 ms only increased time.thread_time() by 19.9 ms which is
smaller than 20 ms. Modify the test to tolerate a delta of at least
15 ms instead of 20 ms.
(cherry picked from commit d6345def68d3a0227253da26213dadb247f786db)

Co-authored-by: Victor Stinner <vstinner@redhat.com>
7 years agobpo-33716, test_concurrent_futures: increase timeout (GH-7828)
Miss Islington (bot) [Thu, 12 Jul 2018 09:05:49 +0000 (02:05 -0700)] 
bpo-33716, test_concurrent_futures: increase timeout (GH-7828)

Increase the timeout from 1 min to 5 min.

Replace also time.time() with time.monotonic() for timeouts.
(cherry picked from commit 3ad8decd76c736f393755537aeb19b5612c21761)

Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
7 years agobpo-34080: Fix a memory leak in the compiler. (GH-8222)
Miss Islington (bot) [Wed, 11 Jul 2018 21:54:29 +0000 (14:54 -0700)] 
bpo-34080: Fix a memory leak in the compiler. (GH-8222)

(cherry picked from commit 993030aac576710a46b3dd0b4864f819d4a94145)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
7 years agobpo-23927: Make getargs.c skipitem() skipping 'w*'. (GH-8192)
Miss Islington (bot) [Wed, 11 Jul 2018 16:56:05 +0000 (09:56 -0700)] 
bpo-23927: Make getargs.c skipitem() skipping 'w*'. (GH-8192)

(cherry picked from commit 504373c59b48f1ea12132d515459022730db6047)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
7 years agobpo-33648: Remove PY_WARN_ON_C_LOCALE (GH-7114)
Miss Islington (bot) [Wed, 11 Jul 2018 14:48:42 +0000 (07:48 -0700)] 
bpo-33648: Remove PY_WARN_ON_C_LOCALE (GH-7114)

This code does not appear to be used anywhere in the python code base.
The use was removed in eb81795d7d3a8c898fa89.
(cherry picked from commit b91a3a0d61596cafb1b46c98fab65fee16a8bbbb)

Co-authored-by: Eitan Adler <grimreaper@users.noreply.github.com>
7 years agobpo-34092, test_logging: increase SMTPHandlerTest timeout (GH-8245) (GH-8247)
Miss Islington (bot) [Wed, 11 Jul 2018 13:56:45 +0000 (06:56 -0700)] 
bpo-34092, test_logging: increase SMTPHandlerTest timeout (GH-8245) (GH-8247)

Change test_logging.SMTPHandlerTest timeout from 8 seconds to 1
minute. The test failed randomly on the slow x86 Gentoo Refleaks 3.7
buildbot.
(cherry picked from commit 31b50b8cbfbf49d5fc17c612cf0dfaa4d0c24983)

Co-authored-by: Victor Stinner <vstinner@redhat.com>
7 years agobpo-34083: Update dict order in Functional HOWTO (GH-8230)
Miss Islington (bot) [Wed, 11 Jul 2018 11:21:52 +0000 (04:21 -0700)] 
bpo-34083: Update dict order in Functional HOWTO (GH-8230)

(cherry picked from commit 5e5bbbec467a1569c914a048a94e7597528f92cf)

Co-authored-by: Stig Johan Berggren <stigjb@gmail.com>
7 years agoDoc: Point to Simple statements section instead of PEP (GH-8238)
Miss Islington (bot) [Wed, 11 Jul 2018 10:32:31 +0000 (03:32 -0700)] 
Doc: Point to Simple statements section instead of PEP (GH-8238)

(cherry picked from commit 33aefad3424853ff197c23431efec89d6598b19d)

Co-authored-by: Andrés Delfino <adelfino@gmail.com>
7 years agoDataclasses: Fix example on 30.6.8, add method should receive a list rather than...
Miss Islington (bot) [Wed, 11 Jul 2018 10:11:11 +0000 (03:11 -0700)] 
Dataclasses: Fix example on 30.6.8, add method should receive a list rather than an integer. (GH-8038) (GH-8237)

Change example function to append rather than add lists.
(cherry picked from commit da5e9476bbfbe61f7661fd22caba1b675e5b4397)

Co-authored-by: Tom Faulkner <tomfaulkner@gmail.com>
7 years agoFix documentation for input and output tutorial (GH-8231)
Miss Islington (bot) [Wed, 11 Jul 2018 00:51:03 +0000 (17:51 -0700)] 
Fix documentation for input and output tutorial (GH-8231)

The ValueError message ends with a period.
(cherry picked from commit 9cffdbffc3b2dec18def1c3e8cfa166d01d609df)

Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
7 years agobpo-34009: Expand on platform support changes (GH-8022)
Miss Islington (bot) [Tue, 10 Jul 2018 13:24:06 +0000 (06:24 -0700)] 
bpo-34009: Expand on platform support changes (GH-8022)

Many users won't realise the implications the OpenSSL 1.0.2
minimum version requirement has when it comes to Ubuntu
14.04 and Debian 8, so expand on that in the platform support
section.

Also explicitly note the non-ASCII-based locale requirement for
full Unicode text handling support on non-Windows systems.
(cherry picked from commit 5fe7c98a54d127759cfce323fab831008c945964)

Co-authored-by: Nick Coghlan <ncoghlan@gmail.com>
7 years agobpo-34031: fix incorrect usage of self.fail in two tests (GH-8091)
Miss Islington (bot) [Tue, 10 Jul 2018 10:08:43 +0000 (03:08 -0700)] 
bpo-34031: fix incorrect usage of self.fail in two tests (GH-8091)

Contributed by Bradley Laney.
(cherry picked from commit 6b490b5db40fc29588e8e6cc23bb89c4fed74ad5)

Co-authored-by: Bradley Laney <bradley.laney@gmail.com>
7 years agobpo-33967: Fix singledispatch raised IndexError when no args (GH-8184)
Miss Islington (bot) [Tue, 10 Jul 2018 07:48:57 +0000 (00:48 -0700)] 
bpo-33967: Fix singledispatch raised IndexError when no args (GH-8184)

(cherry picked from commit 445f1b35ce8461268438c8a6b327ddc764287e05)

Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
7 years agoprefix internal sqlite symbols with _pysqlite_ (GH-8215)
Miss Islington (bot) [Tue, 10 Jul 2018 04:48:02 +0000 (21:48 -0700)] 
prefix internal sqlite symbols with _pysqlite_ (GH-8215)

(cherry picked from commit 7762e4d3872818272800dfbd8e1d8e3a689eb8f2)

Co-authored-by: Benjamin Peterson <benjamin@python.org>
7 years agodelete some unused pysqlite forward declarations (GH-8211)
Miss Islington (bot) [Tue, 10 Jul 2018 04:02:29 +0000 (21:02 -0700)] 
delete some unused pysqlite forward declarations (GH-8211)

(cherry picked from commit d6d4432724b12efc0d280b8eb80bca0deb8d4323)

Co-authored-by: Benjamin Peterson <benjamin@python.org>
7 years agoMove Code_of_Conduct.rst to the root level. (GH-8209)
Miss Islington (bot) [Mon, 9 Jul 2018 21:50:29 +0000 (14:50 -0700)] 
Move Code_of_Conduct.rst to the root level. (GH-8209)

Follow up from https://github.com/python/peps/pull/712GH-issuecomment-403591108:

"people using the repo without using GitHub still ought to be reminded of the COC" - GvR
(cherry picked from commit 3ed919290e0a67a1299afbdaeab4946bc479f92c)

Co-authored-by: Mariatta <Mariatta@users.noreply.github.com>
7 years agobpo-24459: Document missing env variables in python.man (GH-4142)
Miss Islington (bot) [Mon, 9 Jul 2018 19:37:23 +0000 (12:37 -0700)] 
bpo-24459: Document missing env variables in python.man (GH-4142)

Initial patch by Joshua Jay Herman.
(cherry picked from commit 9863de0355caf23c44b708a5d68b603e135f7ae9)

Co-authored-by: Berker Peksag <berker.peksag@gmail.com>
7 years agobpo-22689: Copy the result of getenv() in sys_breakpointhook(). (GH-8194)
Miss Islington (bot) [Mon, 9 Jul 2018 19:06:02 +0000 (12:06 -0700)] 
bpo-22689: Copy the result of getenv() in sys_breakpointhook(). (GH-8194)

(cherry picked from commit f60bf0e168255b7675a4c049250ba6b202f8e647)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
7 years agoFixed several assertTrue() that were intended to be assertEqual(). (GH-8191)
Miss Islington (bot) [Mon, 9 Jul 2018 15:47:14 +0000 (08:47 -0700)] 
Fixed several assertTrue() that were intended to be assertEqual(). (GH-8191)

Fixed also testing the "always" warning filter.
(cherry picked from commit b796e7dcdc24ff7ec53044af041254c83a8ace21)

Co-authored-by: Sergey Fedoseev <fedoseev.sergey@gmail.com>
7 years agobpo-34067: Include a more easily understood example for nullcontext (GH-8158)
Miss Islington (bot) [Mon, 9 Jul 2018 14:11:42 +0000 (07:11 -0700)] 
bpo-34067: Include a more easily understood example for nullcontext (GH-8158)

Include a more easily understood example for nullcontext
(cherry picked from commit c287545d62edf1a1ee65727d3c57befa8c99c13a)

Co-authored-by: Daniel Porteous <danielporteous1@gmail.com>
7 years agobpo-28626: rearrange discussion of output formatting to encourage f-strings (GH-6036)
Miss Islington (bot) [Mon, 9 Jul 2018 13:52:48 +0000 (06:52 -0700)] 
bpo-28626: rearrange discussion of output formatting to encourage f-strings (GH-6036)

The 'output formatting' section of the tutorial talks a lot about manual formatting with things like .rjust() and .zfill(), with only a passing reference to 3.6's new f-strings.

This doesn't drop all of the old material, but it does rearrange the topics into a more modern order: f-strings first, discussing formatting specifiers a bit; then calling .format(); finally manual formatting with .ljust().
(cherry picked from commit ced350b1952857a9b9c68ec7e2786358bcb61050)

Co-authored-by: Andrew Kuchling <amk@amk.ca>
7 years agobpo-34066: Disabled interruption before SETUP_WITH and BEFORE_ASYNC_WITH. (GH-8159)
Miss Islington (bot) [Mon, 9 Jul 2018 13:31:03 +0000 (06:31 -0700)] 
bpo-34066: Disabled interruption before SETUP_WITH and BEFORE_ASYNC_WITH. (GH-8159)

This will prevent emitting a resource warning when the execution was
interrupted by Ctrl-C between calling open() and entering a 'with' block
in "with open()".
(cherry picked from commit 3f4d90d4d72921f16babd3f52d7df804916af224)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
7 years ago[3.7] bpo-26544: Fixed implementation of platform.libc_ver(). (GH-7684). (GH-8193)
Serhiy Storchaka [Mon, 9 Jul 2018 09:55:35 +0000 (12:55 +0300)] 
[3.7] bpo-26544: Fixed implementation of platform.libc_ver(). (GH-7684). (GH-8193)

(cherry picked from commit 2a9b8babf0d09946ebebfdb2931cc0d3db5a1d3d)

7 years agoFix margin in sentinel and mock_open (GH-8188)
Miss Islington (bot) [Mon, 9 Jul 2018 00:48:02 +0000 (17:48 -0700)] 
Fix margin in sentinel and mock_open (GH-8188)

(cherry picked from commit f85af035c5cb9a981f5e3164425f27cf73231b5f)

Co-authored-by: Andrés Delfino <adelfino@gmail.com>
7 years agobpo-34061: Document sqlite3.NotSupportedError (GH-8172)
Marcin Niemira [Sun, 8 Jul 2018 13:59:48 +0000 (15:59 +0200)] 
bpo-34061: Document sqlite3.NotSupportedError (GH-8172)

(cherry picked from commit bc9aa813a34474e517af8999565ff6151559d42f)

Co-authored-by: Marcin Niemira <marcin@niemira.net>
7 years agobpo-31014: Fix the webbrowser module. (GH-7267)
Miss Islington (bot) [Sun, 8 Jul 2018 08:09:21 +0000 (01:09 -0700)] 
bpo-31014: Fix the webbrowser module. (GH-7267)

webbrowser._synthesize() called webbrowser.register() with
outdated signature.

Co-Authored-By: John Still <john@jmsdvl.com>
(cherry picked from commit 25b804a9c21c735ce322877f105ebab2539ccfc1)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
7 years agobpo-33888: Use CPython instead of Python in the FAQ (GH-7767)
Miss Islington (bot) [Sat, 7 Jul 2018 23:42:33 +0000 (16:42 -0700)] 
bpo-33888: Use CPython instead of Python in the FAQ (GH-7767)

Make the change where discussing the CPython implementation of lists and dicts.
(cherry picked from commit 8d41278045ee4e8bf1cadb58a7db58d70ad55237)

Co-authored-by: Andrés Delfino <adelfino@gmail.com>
7 years agocloses bpo-34050: Fix link in SSL docs (GH-8173)
Miss Islington (bot) [Sat, 7 Jul 2018 22:47:35 +0000 (15:47 -0700)] 
closes bpo-34050: Fix link in SSL docs (GH-8173)

(cherry picked from commit 9c5ba097485c8c643b670acd4026f4382bc92f4b)

Co-authored-by: Marcin Niemira <marcin@niemira.net>
7 years agoMake PySimpleQueueType static. (GH-8175)
Miss Islington (bot) [Sat, 7 Jul 2018 22:42:28 +0000 (15:42 -0700)] 
Make PySimpleQueueType static. (GH-8175)

(cherry picked from commit 9b50a7f29b761920c04d8c3435d216145da15311)

Co-authored-by: Benjamin Peterson <benjamin@python.org>
7 years agobpo-33702: Add some missing links in production lists and do a little polish (GH...
Miss Islington (bot) [Sat, 7 Jul 2018 21:09:09 +0000 (14:09 -0700)] 
bpo-33702: Add some missing links in production lists and do a little polish (GH-7259)

(cherry picked from commit caccca78e46bf3c3b24e09b3afb1c1b08c39990c)

Co-authored-by: Andrés Delfino <adelfino@gmail.com>
7 years agobpo-33804: Document that the argument for io.TextIOBase.read() is optional (GH-7510)
Miss Islington (bot) [Sat, 7 Jul 2018 20:39:03 +0000 (13:39 -0700)] 
bpo-33804: Document that the argument for io.TextIOBase.read() is optional (GH-7510)

(cherry picked from commit b6bb77c2b8e83ba6cb845c7b512ac564276e854f)

Co-authored-by: Andrés Delfino <adelfino@gmail.com>
7 years agoFix moduleauthor/sectionauthor directives in Enum (GH-8117)
Miss Islington (bot) [Sat, 7 Jul 2018 19:32:08 +0000 (12:32 -0700)] 
Fix moduleauthor/sectionauthor directives in Enum (GH-8117)

(cherry picked from commit 2d748389dc9c8d083f51c7d28761e088a5468c86)

Co-authored-by: Andrés Delfino <adelfino@gmail.com>
7 years agoAdd missing closing parentheses (GH-8144)
Miss Islington (bot) [Sat, 7 Jul 2018 19:19:55 +0000 (12:19 -0700)] 
Add missing closing parentheses (GH-8144)

(cherry picked from commit 03dd0e794e26afb5fa998d10ae2071e2cb0bc634)

Co-authored-by: Andrés Delfino <adelfino@gmail.com>
7 years agoMake various internal _testbuffer symbols static. (GH-8160)
Miss Islington (bot) [Sat, 7 Jul 2018 18:37:54 +0000 (11:37 -0700)] 
Make various internal _testbuffer symbols static. (GH-8160)

(cherry picked from commit 6cfe45a5c3d41c08d09f319ea68065b10200b13f)

Co-authored-by: Benjamin Peterson <benjamin@python.org>
7 years ago[3.7] bpo-34065: Improve the markup of logging.basicConfig() arguments (GH-8153)...
Dong-hee Na [Sat, 7 Jul 2018 16:12:11 +0000 (01:12 +0900)] 
[3.7] bpo-34065: Improve the markup of logging.basicConfig() arguments (GH-8153). (GH-8156)

(cherry picked from commit 2800dcf656229c2ca4c90b4ddbace0717c41bb9e)

Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
7 years agoFix typo in TypeVar docstring (GH-8142)
Miss Islington (bot) [Sat, 7 Jul 2018 16:05:36 +0000 (09:05 -0700)] 
Fix typo in TypeVar docstring (GH-8142)

"can be used do declare" → "can be used to declare"
(cherry picked from commit 86bfed372b81b8111a56a3311d537566d5df7f61)

Co-authored-by: João D. Ferreira <jotomicron@gmail.com>
7 years agoMake two PyModuleDef_Slot symbols static in _testmultiphase. (GH-8147)
Miss Islington (bot) [Sat, 7 Jul 2018 04:25:22 +0000 (21:25 -0700)] 
Make two PyModuleDef_Slot symbols static in _testmultiphase. (GH-8147)

(cherry picked from commit cb4bae72c965ce946e0fdb48db67c73afdcb5649)

Co-authored-by: Benjamin Peterson <benjamin@python.org>
7 years agocloses bpo-34056: Always return bytes from _HackedGetData.get_data(). (GH-8130)
Miss Islington (bot) [Sat, 7 Jul 2018 04:00:45 +0000 (21:00 -0700)] 
closes bpo-34056: Always return bytes from _HackedGetData.get_data(). (GH-8130)

* Always return bytes from _HackedGetData.get_data().

Ensure the imp.load_source shim always returns bytes by reopening the file in
binary mode if needed. Hash-based pycs have to receive the source code in bytes.

It's tempting to change imp.get_suffixes() to always return 'rb' as a mode, but
that breaks some stdlib tests and likely 3rdparty code, too.
(cherry picked from commit b0274f2cddd36b49fe5080efbe160277ef546471)

Co-authored-by: Benjamin Peterson <benjamin@python.org>
7 years agobpo-34042: Fix dict.copy() to maintain correct total refcount (GH-8119)
Miss Islington (bot) [Fri, 6 Jul 2018 16:40:17 +0000 (09:40 -0700)] 
bpo-34042: Fix dict.copy() to maintain correct total refcount (GH-8119)

(cherry picked from commit 0b75228700e0077d8bf2636e74733389514b4b2f)

Co-authored-by: Yury Selivanov <yury@magic.io>
7 years agobpo-34054: multiprocessing uses time.monotonic() (GH-8118)
Miss Islington (bot) [Fri, 6 Jul 2018 12:11:21 +0000 (05:11 -0700)] 
bpo-34054: multiprocessing uses time.monotonic() (GH-8118)

The multiprocessing module now uses the monotonic clock
time.monotonic() instead of the system clock time.time() to implement
timeouts.
(cherry picked from commit c2368cbc83ca2bafeaea0e4760be4996046d0444)

Co-authored-by: Victor Stinner <vstinner@redhat.com>
7 years agofix two typos in Objects/odictobject.c comments (GH-8040)
Miss Islington (bot) [Fri, 6 Jul 2018 12:08:51 +0000 (05:08 -0700)] 
fix two typos in Objects/odictobject.c comments (GH-8040)

(cherry picked from commit 6f19fc6d5607040ee36153a64a2ed004582af91f)

Co-authored-by: Robert Krzyzanowski <technoguyrob@gmail.com>
7 years ago[3.7] bpo-33899: Make tokenize module mirror end-of-file is end-of-line behavior...
Ammar Askar [Fri, 6 Jul 2018 10:21:05 +0000 (06:21 -0400)] 
[3.7] bpo-33899: Make tokenize module mirror end-of-file is end-of-line behavior (GH-7891) (GH-8132)

Most of the change involves fixing up the test suite, which previously made
the assumption that there wouldn't be a new line if the input didn't end in
one.

Contributed by Ammar Askar.

(cherry picked from commit c4ef4896eac86a6759901c8546e26de4695a1389)

7 years agoFix GCC warning in Python/hamt.c (GH-7618)
Miss Islington (bot) [Fri, 6 Jul 2018 09:43:05 +0000 (02:43 -0700)] 
Fix GCC warning in Python/hamt.c (GH-7618)

(cherry picked from commit d8c3e820b4fcdc45b80ba47f615c95e99e2e931b)

Co-authored-by: Zackery Spytz <zspytz@gmail.com>
7 years agoDoc: Remove superfluous markup. (GH-8112)
Miss Islington (bot) [Fri, 6 Jul 2018 09:34:24 +0000 (02:34 -0700)] 
Doc: Remove superfluous markup. (GH-8112)

The line is speaking of a list of commands, not the list command.
(cherry picked from commit 7943c5e8b525694b837d097d0fcce5097efc5626)

Co-authored-by: Julien Palard <julien@palard.fr>
7 years agoUpdate Stackless Python wiki URL (GH-8072)
Julien Palard [Fri, 6 Jul 2018 09:33:02 +0000 (11:33 +0200)] 
Update Stackless Python wiki URL (GH-8072)

It was moved from bitbucket to GitHub.

(cherry picked from commit a6e1e41e0563c87e93085d3a7f7d96e9bbf792d7)

7 years agoMake TaskStepMethWrapper_Type and TaskWakeupMethWrapper_Type static. (GH-8127)
Miss Islington (bot) [Fri, 6 Jul 2018 05:58:27 +0000 (22:58 -0700)] 
Make TaskStepMethWrapper_Type and TaskWakeupMethWrapper_Type static. (GH-8127)

(cherry picked from commit 3c8aae9ffe13d0f2ad4ff81cdf56bc6393af362a)

Co-authored-by: Benjamin Peterson <benjamin@python.org>
7 years agoFix typo in dataclasses documentation (GH-8102)
Miss Islington (bot) [Thu, 5 Jul 2018 23:28:18 +0000 (16:28 -0700)] 
Fix typo in dataclasses documentation (GH-8102)

(cherry picked from commit e55ca3fdcbb8dda04f6f9fb2ccd1069aa1100cd5)

Co-authored-by: Artjom <tjomk@users.noreply.github.com>
7 years agobpo-34044: subprocess.Popen copies startupinfo (GH-8090) (GH-8121)
Victor Stinner [Thu, 5 Jul 2018 21:15:28 +0000 (23:15 +0200)] 
bpo-34044: subprocess.Popen copies startupinfo (GH-8090) (GH-8121)

subprocess.Popen now copies the startupinfo argument to leave it
unchanged: it will modify the copy, so that the same STARTUPINFO
object can be used multiple times.

Add subprocess.STARTUPINFO._copy() private method.

Python 3.7 backport from master makes the copy() private: renamed to
_copy().

(cherry picked from commit 483422f57e5d8c8bf8820fec29fc9b96bb15d4ef)

7 years agobpo-33988: Fix test_warnings using -W error (GH-7985)
Xtreak [Thu, 5 Jul 2018 16:59:46 +0000 (22:29 +0530)] 
bpo-33988: Fix test_warnings using -W error (GH-7985)

Use DeprecationWarning instead of PendingDeprecationWarning.

7 years agoFix fuzz testing for marshal.loads(). (GH-8106)
Miss Islington (bot) [Thu, 5 Jul 2018 10:44:11 +0000 (03:44 -0700)] 
Fix fuzz testing for marshal.loads(). (GH-8106)

(cherry picked from commit 09bb918a61031377d720f1a0fa1fe53c962791b6)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
7 years agobpo-33720: Improve tests for the stack overflow in marshal.loads(). (GH-7336)
Miss Islington (bot) [Thu, 5 Jul 2018 08:45:24 +0000 (01:45 -0700)] 
bpo-33720: Improve tests for the stack overflow in marshal.loads(). (GH-7336)

(cherry picked from commit fc05e68d8fac70349b7ea17ec14e7e0cfa956121)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
7 years agoRemoved unused import from tzinfo_examples.py. (GH-7994)
Miss Islington (bot) [Thu, 5 Jul 2018 05:08:26 +0000 (22:08 -0700)] 
Removed unused import from tzinfo_examples.py. (GH-7994)

(cherry picked from commit 3a9bb5f269c8534606eb02d1faa2c882d8cb8530)

Co-authored-by: Sergey Fedoseev <fedoseev.sergey@gmail.com>
7 years agobpo-30516: Fix documentation issue with -timedelta in datetime (GH-7348) (GH-8093)
Miss Islington (bot) [Wed, 4 Jul 2018 23:04:24 +0000 (16:04 -0700)] 
bpo-30516: Fix documentation issue with -timedelta in datetime (GH-7348) (GH-8093)

This commit fixes the -timedelta overfllow issue not documented properly.

Signed-off-by: Farhaan Bukhsh <farhaan.bukhsh@gmail.com>
(cherry picked from commit 5b6e49a1393b3e2313471696e3568e26296137b4)

Co-authored-by: Farhaan Bukhsh <farhaan.bukhsh@gmail.com>
7 years agobpo-32942: Fix environment dependent test_script_helper (GH-8034)
Miss Islington (bot) [Wed, 4 Jul 2018 10:35:08 +0000 (03:35 -0700)] 
bpo-32942: Fix environment dependent test_script_helper (GH-8034)

Result of function interpreter_requires_environment() depends on os.environ.
This was not covered by the tests, leading to fail when PYTHONHOME was set.
(cherry picked from commit a390cb6b6fb6638e91d699513167e8f35b47f846)

Co-authored-by: Lorenz Mende <Lorenz.mende@gmail.com>
7 years agobpo-34040, multiprocessing: Fix test_forkserver_sigkill() (GH-8081)
Miss Islington (bot) [Wed, 4 Jul 2018 10:10:14 +0000 (03:10 -0700)] 
bpo-34040, multiprocessing: Fix test_forkserver_sigkill() (GH-8081)

Fix test_forkserver_sigkill() of test_multiprocessing_forkserver:
give more time to the first child process to complete, double the
sleep in the parent process.

Reduce also the child process sleep from 1000 ms to 500 ms, to not change
the total duration of the test.
(cherry picked from commit 07888e1cce89e9bb7dc501e287b4cb126e01c378)

Co-authored-by: Victor Stinner <vstinner@redhat.com>
7 years agobpo-34010: Fix tarfile read performance regression (GH-8020)
Miss Islington (bot) [Wed, 4 Jul 2018 08:32:41 +0000 (01:32 -0700)] 
bpo-34010: Fix tarfile read performance regression (GH-8020)

During buffered read, use a list followed by join instead of extending a bytes object.
This is how it was done before but changed in commit b506dc32c1a.
(cherry picked from commit 12a08c47601cadea8e7d3808502cdbcca87b2ce2)

Co-authored-by: hajoscher <hajoscher@gmail.com>
7 years agoMake GenericAlias_Type and Generic_Type static. (GH-8076)
Miss Islington (bot) [Wed, 4 Jul 2018 06:08:57 +0000 (23:08 -0700)] 
Make GenericAlias_Type and Generic_Type static. (GH-8076)

(cherry picked from commit 97ae32c92ecc7b3c29f8829a2b79f0f8f8bbf2cc)

Co-authored-by: Benjamin Peterson <benjamin@python.org>
7 years agoDon't export pending_threadfunc from _testcapi. (GH-8075)
Miss Islington (bot) [Wed, 4 Jul 2018 05:50:34 +0000 (22:50 -0700)] 
Don't export pending_threadfunc from _testcapi. (GH-8075)

(cherry picked from commit b4588c2fffbda91e4c2f0cf2b0fc3d14def95608)

Co-authored-by: Benjamin Peterson <benjamin@python.org>
7 years agobpo-24596: Decref module in PyRun_SimpleFileExFlags() on SystemExit (GH-7918) (GH...
Miss Islington (bot) [Tue, 3 Jul 2018 20:13:28 +0000 (13:13 -0700)] 
bpo-24596: Decref module in PyRun_SimpleFileExFlags() on SystemExit (GH-7918) (GH-8070)

PyErr_Print() will not return when the exception is a SystemExit, so
decref the __main__ module object in that case.
(cherry picked from commit d8cba5d16f1333fd625726fc72e66afbd45b8d00)

Co-authored-by: Zackery Spytz <zspytz@gmail.com>
7 years agobpo-34018: Doc'd that type names of SQLite converters are case-insensitive. (GH-8042...
Miss Islington (bot) [Tue, 3 Jul 2018 12:37:16 +0000 (05:37 -0700)] 
bpo-34018: Doc'd that type names of SQLite converters are case-insensitive. (GH-8042) (GH-8065)

(cherry picked from commit 831c29721dcb1b768c6315a4b8a4059c4c97ee8b)

Co-authored-by: Sergey Fedoseev <fedoseev.sergey@gmail.com>
7 years agobpo-34019: Fix wrong arguments for Opera Browser (GH-8047)
Miss Islington (bot) [Tue, 3 Jul 2018 12:17:28 +0000 (05:17 -0700)] 
bpo-34019: Fix wrong arguments for Opera Browser (GH-8047)

The Opera Browser was using a outdated command line invocation that resulted in an incorrect URL being opened in the browser when requested using the webbrowser module.

* Correct the arguments passed to the Opera Browser when opening a new URL.
(cherry picked from commit 3cf1f154edb88c108877729ea09f4ac174697fea)

Co-authored-by: Bumsik Kim <k.bumsik@gmail.com>
7 years agobpo-33735: Fix test_multiprocessing random failure (GH-8059)
Miss Islington (bot) [Tue, 3 Jul 2018 11:38:56 +0000 (04:38 -0700)] 
bpo-33735: Fix test_multiprocessing random failure (GH-8059)

When hunting memory leaks using -R 3:3, test_imap_unordered() of
test_multiprocessing leaks randomly a few memory blocks. It is a
false alarm: when testing using -R 3:20 for example, no leak is
detected.

Modify test_imap_unordered() to be closer to test_imap():

* Only test 10 numbers instead of 1000: it's a pool of 4 processes, so
  10 is enough to test at least one number per process
* Use chunksize=100 instead of chunksize=53 to mimick test_imap()
(cherry picked from commit 23401fb960bb94e6ea62d2999527968d53d3fc65)

Co-authored-by: Victor Stinner <vstinner@redhat.com>
7 years agobpo-34006: Revert line length limit for Windows help docs (GH-8051)
Miss Islington (bot) [Mon, 2 Jul 2018 22:23:22 +0000 (15:23 -0700)] 
bpo-34006: Revert line length limit for Windows help docs (GH-8051)

 The line-length limit is not needed because the pages appear in a separate app rather
 than on a browser tab.  It can also interact badly with the DPI setting.
(cherry picked from commit d824ca7f4df9b5f77cf02490b0e98c2408e21fee)

Co-authored-by: Zachary Ware <zachary.ware@gmail.com>
7 years agobpo-33961: Adjusted dataclasses docs to correct exceptions raised. (GH-7917)
Chris Cogdon [Mon, 2 Jul 2018 10:21:50 +0000 (03:21 -0700)] 
bpo-33961: Adjusted dataclasses docs to correct exceptions raised. (GH-7917)

7 years agobpo-33978: Close existing handlers before logging (re-)configuration. (GH-8008) ...
Miss Islington (bot) [Mon, 2 Jul 2018 09:35:09 +0000 (02:35 -0700)] 
bpo-33978: Close existing handlers before logging (re-)configuration. (GH-8008) (GH-8044)

(cherry picked from commit 087570af6d5d39b51bdd5e660a53903960e58678)

Co-authored-by: Xtreak <tirkarthi@users.noreply.github.com>
7 years agoDoc: Remove unused image file (GH-8027)
Miss Islington (bot) [Sat, 30 Jun 2018 18:30:43 +0000 (11:30 -0700)] 
Doc: Remove unused image file (GH-8027)

(cherry picked from commit fe524df37cf3a8d4de291e7fc48257f96ff91bbe)

7 years agobpo-25862: Fix several bugs in the _io module. (GH-8026)
Miss Islington (bot) [Sat, 30 Jun 2018 18:25:37 +0000 (11:25 -0700)] 
bpo-25862: Fix several bugs in the _io module. (GH-8026)

They can be exposed when some C API calls fail due to lack of
memory.

* Failed Py_BuildValue() could cause an assertion error in the
  following TextIOWrapper.tell().
* input_chunk could be decrefed twice in TextIOWrapper.seek()
  after failed Py_BuildValue().
* initvalue could leak in StringIO.__getstate__() after failed
  PyDict_Copy().
(cherry picked from commit fdb5a50ef34f7951c3b01eb77b1359725a9ad670)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
7 years agobpo-32568: make select.epoll() and its docs consistent (GH-7840) (GH-8024)
Miss Islington (bot) [Sat, 30 Jun 2018 13:03:19 +0000 (06:03 -0700)] 
bpo-32568: make select.epoll() and its docs consistent (GH-7840) (GH-8024)

* `flags` is indeed deprecated, but there is a validation on its value for
  backwards compatibility reasons.  This adds mention of this in the docs.
* The docs say that `sizehint` is deprecated and ignored, but it is still
  used when `epoll_create1()` is unavailable. This adds mention of this in
  the docs.
* `sizehint=-1` is acceptable again, and is replaced with `FD_SETSIZE-1`.
  This is needed to have a default value available at the Python level,
  since `FD_SETSIZE` is not exposed to Python. (see: bpo-31938)
* Reject `sizehint=0` since it is invalid to pass on to `epoll_create()`.

The relevant tests have also been updated.

(cherry picked from commit 0cdf5f42898350261c5ff65d96334e736130780f)

Co-authored-by: Tal Einat <taleinat+github@gmail.com>
7 years agobpo-33974: Fix passing special characters to ttk widgets. (GH-7986)
Miss Islington (bot) [Sat, 30 Jun 2018 06:42:57 +0000 (23:42 -0700)] 
bpo-33974: Fix passing special characters to ttk widgets. (GH-7986)

Fix passing lists and tuples of strings containing special characters
'"', '\\', '{', '}' and '\n' as options to tkinter.ttk widgets.
(cherry picked from commit 5bb5bbfca847524bab5f2368bdb48eedf5dba74f)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
7 years agoFix redundant declaration of _PyImport_AddModuleObject (GH-7992)
Miss Islington (bot) [Fri, 29 Jun 2018 23:03:07 +0000 (16:03 -0700)] 
Fix redundant declaration of _PyImport_AddModuleObject (GH-7992)

(cherry picked from commit f874bd1f0630644f3e3faaa2d51e6749465c70bd)

Co-authored-by: Jeremy Cline <jeremy@jcline.org>
7 years agobpo-25862: Fix assertion failures in io.TextIOWrapper.tell(). (GH-3918)
Miss Islington (bot) [Fri, 29 Jun 2018 10:34:34 +0000 (03:34 -0700)] 
bpo-25862: Fix assertion failures in io.TextIOWrapper.tell(). (GH-3918)

(cherry picked from commit 23db935bcf258657682e66464bf8512def8af830)

Co-authored-by: Zackery Spytz <zspytz@gmail.com>
7 years agoFix the indentation in the documentation of bin() and hash() (GH-7998)
Miss Islington (bot) [Fri, 29 Jun 2018 10:16:26 +0000 (03:16 -0700)] 
Fix the indentation in the documentation of bin() and hash() (GH-7998)

(cherry picked from commit bda9c3eae3ad16e43145599ac6359bfdcaf1fd4a)

Co-authored-by: Andrés Delfino <adelfino@gmail.com>
7 years agobpo-14117: Make minor tweaks to turtledemo (GH-8002)
Miss Islington (bot) [Fri, 29 Jun 2018 05:30:44 +0000 (22:30 -0700)] 
bpo-14117: Make minor tweaks to turtledemo (GH-8002)

The 'wikipedia' example is now 'rosette', describing what it draws.
The 'penrose' print output is reduced.  The 'tree' '1024'
output is eliminated.
(cherry picked from commit 891a1f86d415779cf67ca23e626a868e586feb05)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
7 years agobpo-27500: Fix static version of getaddrinfo to resolve IPv6 (GH-7993)
Miss Islington (bot) [Fri, 29 Jun 2018 02:16:48 +0000 (19:16 -0700)] 
bpo-27500: Fix static version of getaddrinfo to resolve IPv6 (GH-7993)

(cherry picked from commit d904c238ca3551750cb97d15d827c3e525970867)

Co-authored-by: Yury Selivanov <yury@magic.io>
7 years agobpo-31546: Fix input hook integration (GH-7978)
Miss Islington (bot) [Thu, 28 Jun 2018 17:48:37 +0000 (10:48 -0700)] 
bpo-31546: Fix input hook integration (GH-7978)

(cherry picked from commit 9b9d58f0d88b338eb8d2ae0da5cd91d60d1b0e39)

Co-authored-by: Thomas A Caswell <tcaswell@gmail.com>
7 years agobpo-33985: Implement ContextVar.name attribute. (GH-7980)
Miss Islington (bot) [Thu, 28 Jun 2018 17:39:54 +0000 (10:39 -0700)] 
bpo-33985: Implement ContextVar.name attribute. (GH-7980)

(cherry picked from commit 41cb0baea96a80360971908a0bd79d9d40dd5e44)

Co-authored-by: Yury Selivanov <yury@magic.io>
7 years agobpo-32996: Enhancements to What's New based on feedback (GH-7988)
Miss Islington (bot) [Thu, 28 Jun 2018 16:14:52 +0000 (09:14 -0700)] 
bpo-32996: Enhancements to What's New based on feedback (GH-7988)

(cherry picked from commit 4d26c8a177d8ada440b3cfdfb1d0423ab5ca81a7)

Co-authored-by: Elvis Pranskevichus <elvis@magic.io>
7 years agoFix NEWS entry for bpo-31647
Ned Deily [Wed, 27 Jun 2018 17:27:45 +0000 (13:27 -0400)] 
Fix NEWS entry for bpo-31647

7 years agobpo-33958: Doc: Remove unused variable in example (GH-7927)
Miss Islington (bot) [Thu, 28 Jun 2018 06:41:29 +0000 (23:41 -0700)] 
bpo-33958: Doc: Remove unused variable in example (GH-7927)

(cherry picked from commit 62b6cea6b843076cfd6631eccd9347e8c3dd9458)

Co-authored-by: Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) <srinivasreddy@users.noreply.github.com>
7 years agostart 3.7.0+
Ned Deily [Wed, 27 Jun 2018 22:29:26 +0000 (18:29 -0400)] 
start 3.7.0+

7 years agoMerge 3.7.0 final changes
Ned Deily [Wed, 27 Jun 2018 22:23:18 +0000 (18:23 -0400)] 
Merge 3.7.0 final changes

7 years agobpo-33715: Fix multiprocessing test_wait_result() (GH-7971)
Miss Islington (bot) [Wed, 27 Jun 2018 20:47:44 +0000 (13:47 -0700)] 
bpo-33715: Fix multiprocessing test_wait_result() (GH-7971)

Increase timeouts from 10 seconds to 1 minute.
(cherry picked from commit 492572715aa0f4ddab51f979f7f56465c762227c)

Co-authored-by: Victor Stinner <vstinner@redhat.com>
7 years agobpo-33913: Fix test_multiprocessing_main_handling (GH-7972)
Miss Islington (bot) [Wed, 27 Jun 2018 20:41:39 +0000 (13:41 -0700)] 
bpo-33913: Fix test_multiprocessing_main_handling (GH-7972)

bpo-30339, bpo-33913:

* Increase timeout from 10 seconds to 1 minute in
  test_source_main_skipped_in_children source of
  test_multiprocessing_main_handling.
* Replace time.time() with time.monotonic().
* On timeout, include the duration in the error message.
(cherry picked from commit 64737e9ae2081e529935ecf07f44e89f362d1c4b)

Co-authored-by: Victor Stinner <vstinner@redhat.com>
7 years agobpo-30356: Fix test_mymanager_context() of multiprocessing (GH-7968)
Miss Islington (bot) [Wed, 27 Jun 2018 16:38:37 +0000 (09:38 -0700)] 
bpo-30356: Fix test_mymanager_context() of multiprocessing (GH-7968)

test_mymanager_context() now also accepts -SIGTERM as an expected
exitcode for the manager process. The process is killed with SIGTERM
if it takes longer than 1 second to stop.
(cherry picked from commit fbd7172325e6ce55b6d5d3d7603e4c1c8a219cb8)

Co-authored-by: Victor Stinner <vstinner@redhat.com>