]>
granicus.if.org Git - python/log
Miss Islington (bot) [Thu, 12 Sep 2019 10:28:05 +0000 (03:28 -0700)]
closes bpo-38127: _ctypes: PyObject_IsSubclass() should be checked for failure. (GH-16011)
An exception may occur during a PyObject_IsSubclass() call.
(cherry picked from commit
ea683deccc505a78bbbb1eb8c6a88b0835ad5151 )
Co-authored-by: Zackery Spytz <zspytz@gmail.com>
Petr Viktorin [Thu, 12 Sep 2019 09:44:46 +0000 (10:44 +0100)]
[3.8] bpo-37879: Suppress subtype_dealloc decref when base type is a C heap type (GH-15323, GH-16004) (GH-15966)
The instance destructor for a type is responsible for preparing
an instance for deallocation by decrementing the reference counts
of its referents.
If an instance belongs to a heap type, the type object of an instance
has its reference count decremented while for static types, which
are permanently allocated, the type object is unaffected by the
instance destructor.
Previously, the default instance destructor searched the class
hierarchy for an inherited instance destructor and, if present,
would invoke it.
Then, if the instance type is a heap type, it would decrement the
reference count of that heap type. However, this could result in the
premature destruction of a type because the inherited instance
destructor should have already decremented the reference count
of the type object.
This change avoids the premature destruction of the type object
by suppressing the decrement of its reference count when an
inherited, non-default instance destructor has been invoked.
Finally, an assertion on the Py_SIZE of a type was deleted. Heap
types have a non zero size, making this into an incorrect assertion.
https://github.com/python/cpython/pull/15323.
(cherry picked from commit
ff023ed36ea260ab64be5895f1f1f087c798987a )
Fixup: https://github.com/python/cpython/pull/16004.
(cherry picked from commit
5e9caeec76119a0d61c25f1466c27b7dbd5115bd )
Co-authored-by: Eddie Elizondo <eduardo.elizondorueda@gmail.com>
Miss Islington (bot) [Thu, 12 Sep 2019 08:19:12 +0000 (01:19 -0700)]
Doc: Update pickle.rst (GH-14128) (GH-16014)
* Edits for readability and grammar
(cherry picked from commit
362f5350eb5e2c7bfb0b0a8c306a2e128c3aee93 )
Co-authored-by: Géry Ogam <gery.ogam@gmail.com>
Paul Ganssle [Thu, 12 Sep 2019 02:50:29 +0000 (03:50 +0100)]
bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895) (GH-15961)
Miss Islington (bot) [Thu, 12 Sep 2019 00:04:27 +0000 (17:04 -0700)]
closes bpo-38124: Fix bounds check in PyState_AddModule. (GH-16007)
The >=, checking whether a module index was in already in the module-by-index list, needed to be strict.
Also, fold nested ifs into one and fix some bad spacing.
(cherry picked from commit
39de95b746c990e6a2fe9af5fad01747f58b2e5f )
Co-authored-by: Benjamin Peterson <benjamin@python.org>
Miss Islington (bot) [Wed, 11 Sep 2019 18:19:12 +0000 (11:19 -0700)]
Correct typo in min version test (GH-16001)
Signed-off-by: Christian Heimes <christian@python.org>
(cherry picked from commit
de606ea169435fe4dd40dc3e3b2b591e11396a14 )
Co-authored-by: Christian Heimes <christian@python.org>
Miss Islington (bot) [Wed, 11 Sep 2019 18:12:35 +0000 (11:12 -0700)]
bpo-36270: Doc: add link to traceback object reference (GH-13119)
(cherry picked from commit
9936371af298d465095ae70bc9c2943b4b16eac4 )
Co-authored-by: Björn Meier <bjoern@opentrash.org>
Miss Islington (bot) [Wed, 11 Sep 2019 17:59:13 +0000 (10:59 -0700)]
bpo-34001: Fix test_ssl with LibreSSL (GH-13783) (#15997)
(cherry picked from commit
c9bc49c5f6e26a7c958307c2ac338951a7534d9a )
Co-authored-by: Christian Heimes <christian@python.org>
Miss Islington (bot) [Wed, 11 Sep 2019 17:42:21 +0000 (10:42 -0700)]
Improve clarity of try-return-finally-return (GH-15677) (GH-15981)
Clarify execution in try-return-finally-return case.
(cherry picked from commit
0cc27417f2cd399c432d7dda9aeca1d81af76936 )
Co-authored-by: toonarmycaptain <toonarmycaptain@hotmail.com>
Stéphane Wirtel [Wed, 11 Sep 2019 17:36:00 +0000 (19:36 +0200)]
[3.8] bpo-37698: Update doc of PyBuffer_ToContiguous (GH-14992) (GH-15999)
https://bugs.python.org/issue37698
(cherry picked from commit
15f5a7527b87e11fcf23069c147fd4cb7d42cfb0 )
Co-authored-by: Hai Shi <shihai1992@gmail.com>
Miss Islington (bot) [Wed, 11 Sep 2019 17:32:26 +0000 (10:32 -0700)]
Doc: recursive glob ** follows symlinks to directories (GH-12918)
(cherry picked from commit
e24594bfe75aff3e654665cb940ddc4d4acffd2f )
Co-authored-by: Marc <Marc.Herbert+github@gmail.com>
Miss Islington (bot) [Wed, 11 Sep 2019 17:09:57 +0000 (10:09 -0700)]
bpo-37750: Add doc of PyBuffer_FromContiguous (GH-15988) (GH-15990)
https://bugs.python.org/issue37750
Automerge-Triggered-By: @matrixise
(cherry picked from commit
5a56ce4a0e820fefcd598b94715a7ff7e199858d )
Co-authored-by: Hai Shi <shihai1992@gmail.com>
Miss Islington (bot) [Wed, 11 Sep 2019 17:09:28 +0000 (10:09 -0700)]
bpo-38117: Test with OpenSSL 1.1.1d (GH-15983)
Signed-off-by: Christian Heimes <christian@python.org>
(cherry picked from commit
58ab13479d854491ac9207bacfae25e8b18b044a )
Co-authored-by: Christian Heimes <christian@python.org>
Miss Islington (bot) [Wed, 11 Sep 2019 16:46:29 +0000 (09:46 -0700)]
bpo-36528: Remove duplicate re tests. (GH-2689)
Co-Authored-By: Makdon <makdon@makdon.me>
(cherry picked from commit
e6557d3c62800f51ee6530c94a10b93d725504fa )
Co-authored-by: Xtreak <tir.karthi@gmail.com>
Miss Islington (bot) [Wed, 11 Sep 2019 16:25:40 +0000 (09:25 -0700)]
Doc: Fix missing negation. (GH-14640)
Reported by Hug Capella on docs@.
Automerge-Triggered-By: @matrixise
(cherry picked from commit
1fae844451b120b93880d9360f288c70e125520c )
Co-authored-by: Julien Palard <julien@palard.fr>
Miss Islington (bot) [Wed, 11 Sep 2019 16:03:18 +0000 (09:03 -0700)]
bpo-36260: Add pitfalls to zipfile module documentation (GH-13378) (GH-15976)
* bpo-36260: Add pitfalls to zipfile module documentation
We saw vulnerability warning description (including zip bomb) in Doc/library/xml.rst file.
This gave us the idea of documentation improvement.
So, we moved a little bit forward :P
And the doc patch can be found (pr).
* fix trailing whitespace
* 📜🤖 Added by blurb_it.
* Reformat text for consistency.
(cherry picked from commit
3ba51d587f6897a45301ce9126300c14fcd4eba2 )
Co-authored-by: JunWei Song <sungboss2004@gmail.com>
Miss Islington (bot) [Wed, 11 Sep 2019 15:57:54 +0000 (08:57 -0700)]
bpo-38114: Do not include pip.ini in Nuget package (GH-15964)
(cherry picked from commit
19f6940cd7fb91246b88e1fbdbce97a02e7f3fa1 )
Co-authored-by: Steve Dower <steve.dower@python.org>
Miss Islington (bot) [Wed, 11 Sep 2019 15:56:13 +0000 (08:56 -0700)]
bpo-33166: Change os.cpu_count to return active (real) processors (GH-15949)
(cherry picked from commit
aa929273caca2f4e24e3aa9e790272fd4458ad35 )
Co-authored-by: Steve Dower <steve.dower@python.org>
Miss Islington (bot) [Wed, 11 Sep 2019 15:55:57 +0000 (08:55 -0700)]
bpo-37885: venv: Don't produce unbound variable warning on deactivate (GH-15973)
Before, running deactivate from a bash shell configured to treat undefined variables as errors (`set -u`) would produce a warning:
```
$ python3 -m venv test
$ source test/bin/activate
(test) $ deactivate
-bash: $1: unbound variable
```
(cherry picked from commit
5209e586b7cac9a43b2c44349a26b1b0af06ead3 )
Co-authored-by: Daniel Abrahamsson <hamsson@gmail.com>
Miss Islington (bot) [Wed, 11 Sep 2019 15:55:31 +0000 (08:55 -0700)]
bpo-36182: Update pathlib.Path.write_text() docs (GH-12161) (GH-15977)
with the case of an existing file
(cherry picked from commit
af636f4f91b8289b6dad95cb84123f6e22fd7f4f )
Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
Miss Islington (bot) [Wed, 11 Sep 2019 15:21:58 +0000 (08:21 -0700)]
bpo-36634: Fixes activate.bat when existing values contain double quotes (GH-15924)
(cherry picked from commit
574b324bdc9a126b5a4488c3613f11ad2555415e )
Co-authored-by: Steve Dower <steve.dower@python.org>
Miss Islington (bot) [Wed, 11 Sep 2019 15:12:09 +0000 (08:12 -0700)]
bpo-35224: Additional documentation for Assignment Expressions (GH-15935) (GH-15967)
Add or update assignment expression documentation for:
- FAQ - Design
- Reference - Expressions
- Reference - Lexical Analysis
https://bugs.python.org/issue35224
Automerge-Triggered-By: @matrixise
(cherry picked from commit
6357c95716d89ac1f80587fbc4133df8d2e8396c )
Co-authored-by: Emily Morehouse <emily@cuttlesoft.com>
Miss Islington (bot) [Wed, 11 Sep 2019 15:08:47 +0000 (08:08 -0700)]
bpo-37651: Document CancelledError is now a subclass of BaseException (GH-15950)
https://bugs.python.org/issue37651
Automerge-Triggered-By: @1st1
(cherry picked from commit
7b69069e9aa0047a0dbe8af1a67aa2b355dc68d8 )
Co-authored-by: Xtreak <tir.karthi@gmail.com>
Miss Islington (bot) [Wed, 11 Sep 2019 15:04:02 +0000 (08:04 -0700)]
Doc: Indicate locations of parse_qs, parse_qsl, escape (GH-14828)
Since they have been removed from cgi it's useful to remind people where they
can be found instead.
(cherry picked from commit
1abf54336fd2cb545c453d22dd5501392b3350b2 )
Co-authored-by: Simon Willison <swillison@gmail.com>
Miss Islington (bot) [Wed, 11 Sep 2019 14:54:44 +0000 (07:54 -0700)]
Update ftplib.all_errors documentation to match code (GH-15026)
The documentation doesn't mention the `EOFError` that https://github.com/python/cpython/blob/master/Lib/ftplib.pyGH-L66 includes
(cherry picked from commit
51adfc6ed2c6c466dda84edc11d9b2b8ae2903e8 )
Co-authored-by: Andrew Scheller <github@loowis.durge.org>
Miss Islington (bot) [Wed, 11 Sep 2019 14:48:33 +0000 (07:48 -0700)]
bpo-33187: Document ElementInclude (XInclude) support in ElementTree (GH-8861) (GH-15958)
(cherry picked from commit
97b817eae34b77be1ced382e15098a112f547848 )
Co-authored-by: Anjali Bansal <anjali.mca17.du@gmail.com>
Zachary Ware [Wed, 11 Sep 2019 14:39:32 +0000 (15:39 +0100)]
[3.8] Turn off AppVeyor CI (GH-15929) (GH-15941)
(cherry picked from commit
6f55b0394bce8e64a59c61f465fec8079a00e55c )
Miss Islington (bot) [Wed, 11 Sep 2019 14:38:25 +0000 (07:38 -0700)]
bpo-23460: Fix documentation for decimal string :g formatting (GH-11850) (GH-15954)
(cherry picked from commit
1660a61a105bcd62e2dfa77885959a8992e9f14e )
Co-authored-by: Brennan D Baraban <34765317+bdbaraban@users.noreply.github.com>
Miss Islington (bot) [Wed, 11 Sep 2019 14:37:38 +0000 (07:37 -0700)]
closes bpo-37252: Fix devpoll tests. (GH-14017) (GH-15948)
(cherry picked from commit
95da826db9ed4acbc81f32296f14429c06bd2124 )
Co-authored-by: Jakub Kulík <Kulikjak@gmail.com>
Miss Islington (bot) [Wed, 11 Sep 2019 14:37:18 +0000 (07:37 -0700)]
bpo-36919: make test_source_encoding.test_issue2301 implementation-independent (GH-13639) (GH-15952)
* bpo-36919: make test_issue2301 implementation-independent
(cherry picked from commit
b6643dcfc26859f935e4b3a6a2a203e8ef5320e2 )
Co-authored-by: Pavel Koneski <pavel.koneski@gmail.com>
Miss Islington (bot) [Wed, 11 Sep 2019 14:21:53 +0000 (07:21 -0700)]
bpo-38107: Replace direct future and task contructor calls with factories in asyncio tests (GH-15928)
(cherry picked from commit
9aee90018a5213e3529768e0b873955d23f5e50b )
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
Miss Islington (bot) [Wed, 11 Sep 2019 14:13:54 +0000 (07:13 -0700)]
bpo-34519: Add additional aliases for HP Roman 8 (GH-8956) (GH-15945)
* bpo-34519: Add additional aliases for HP Roman 8
HP Roman 8 is known under mode aliases than listed in aliases.py.
Patch by Michael Osipov.
(cherry picked from commit
a828514cc3715ebbc700fefa41c0ef044cbd6741 )
Co-authored-by: Michael Osipov <michael.osipov@siemens.com>
Miss Islington (bot) [Wed, 11 Sep 2019 14:13:31 +0000 (07:13 -0700)]
bpo-37305: add MIME type for Web App Manifest (GH-14199) (#15946)
* bpo-37305: add MIME type for Web App Manifest
Co-authored-by: Filip Š <filip.stamcar@hotmail.com>
Miss Islington (bot) [Wed, 11 Sep 2019 14:12:54 +0000 (07:12 -0700)]
bpo-31163: Added return values to pathlib.Path instance's rename and replace methods. (GH-13582) (GH-15944)
* bpo-31163: Added return values to pathlib.Path instance's rename and replace methods.
(cherry picked from commit
088a09af4bdeff52b9dedeb7acd1e82069f37d98 )
Co-authored-by: hui shang <shangdahao@gmail.com>
Miss Islington (bot) [Wed, 11 Sep 2019 13:38:17 +0000 (06:38 -0700)]
bpo-33459: Fix "tuple displays" term in Expressions.rst (GH-6760) (GH-15940)
https://bugs.python.org/issue33459
Automerge-Triggered-By: @matrixise
(cherry picked from commit
dc269971091710563a0d730a0d4b084901826c15 )
Co-authored-by: Andre Delfino <adelfino@gmail.com>
Miss Islington (bot) [Wed, 11 Sep 2019 13:36:50 +0000 (06:36 -0700)]
bpo-33944: note about the intended use of code in .pth files (GH-10131) (GH-15942)
https://bugs.python.org/issue33944
(cherry picked from commit
f9b5840fb4497a9e2ba2c1f01ad0dafba04c8496 )
Co-authored-by: native-api <ivan_pozdeev@mail.ru>
Miss Islington (bot) [Wed, 11 Sep 2019 13:31:27 +0000 (06:31 -0700)]
bpo-37326: Include libffi license when available (GH-15921)
(cherry picked from commit
8fcaffb048d2359a4c06ed5d8fbbf46d3ae1a472 )
Co-authored-by: Steve Dower <steve.dower@python.org>
Stéphane Wirtel [Wed, 11 Sep 2019 13:17:48 +0000 (15:17 +0200)]
[3.8] Doc: Use walrus operator in example. (GH-15934) (GH-15936)
(cherry picked from commit
e1d455f3a3b82c2e08d5e133bcbab5a181b66cfb )
Co-authored-by: Julien Palard <julien@palard.fr>
Miss Islington (bot) [Wed, 11 Sep 2019 13:05:49 +0000 (06:05 -0700)]
Doc: Fix typo in fastsearch comments (GH-14608) (GH-15933)
(cherry picked from commit
60bba83b5d9947fb3106325293e3a4e9c9cdea7e )
Co-authored-by: Valentin Haenel <esc@users.noreply.github.com>
Miss Islington (bot) [Wed, 11 Sep 2019 13:02:25 +0000 (06:02 -0700)]
bpo-35649: update http client example (GH-11441) (GH-15930)
(cherry picked from commit
62cf6981425c6a6b136c5e2abef853364f535e9d )
Co-authored-by: Ashwin Ramaswami <aramaswamis@gmail.com>
Vinay Sajip [Wed, 11 Sep 2019 12:39:52 +0000 (13:39 +0100)]
[3.8] bpo-35168: Make shlex.punctuation_chars read-only (GH-11631) (GH-15927)
(cherry picked from commit
972cf5c06a5ba16ad243a442dbb9c15307fbed95 )
Co-authored-by: Alex <a.v.shkop@gmail.com>
Miss Islington (bot) [Wed, 11 Sep 2019 12:32:16 +0000 (05:32 -0700)]
Minor ReST formatting fixes in subprocess docs (GH-14876)
(cherry picked from commit
1a13efb7e05b545def26f29c954751fdb6b22fa3 )
Co-authored-by: Tim Hoffmann <2836374+timhoffm@users.noreply.github.com>
Miss Islington (bot) [Wed, 11 Sep 2019 12:28:06 +0000 (05:28 -0700)]
bpo-38103: fix conflicting labels in the docs. (GH-15906)
(cherry picked from commit
2d8d597bb8f882a7677db5a2739df0e617098634 )
Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
Miss Islington (bot) [Wed, 11 Sep 2019 12:24:55 +0000 (05:24 -0700)]
bpo-35603: Add a note on difflib table header interpreted as HTML (GH-11439)
(cherry picked from commit
c78dae8d2b890d487e428dce00c7f600612cce7b )
Co-authored-by: Xtreak <tir.karthi@gmail.com>
Miss Islington (bot) [Wed, 11 Sep 2019 12:09:23 +0000 (05:09 -0700)]
bpo-20504 : in cgi.py, fix bug when a multipart/form-data request has… (GH-10638)
* bpo-20504 : in cgi.py, fix bug when a multipart/form-data request has no content-length header
* Add Misc/NEWS.d/next file.
* Add rst formatting for NEWS.d/next file
* Reaplce assert by self.assertEqual
(cherry picked from commit
2d7cacacc310b65b43e7e2de89e7722291dea6a4 )
Co-authored-by: Pierre Quentel <pierre.quentel@gmail.com>
Miss Islington (bot) [Wed, 11 Sep 2019 11:47:16 +0000 (04:47 -0700)]
bpo-35066: Make trailing percent test more portable. (GH-15907)
Different libc implementations have different behavior when presented with trailing % in strftime strings. To make test_strftime_trailing_percent more portable, compare the output of datetime.strftime directly to that of time.strftime rather than hardcoding.
(cherry picked from commit
f2173ae38fa49235c3cdc28ae2ca2e19a375a596 )
Co-authored-by: Benjamin Peterson <benjamin@python.org>
Brett Cannon [Wed, 11 Sep 2019 11:38:22 +0000 (12:38 +0100)]
[3.8] bpo-37409: fix relative import with no parent (GH-14956) (GH-15913)
Relative imports use resolve_name to get the absolute target name,
which first seeks the current module's absolute package name from the globals:
If __package__ (and __spec__.parent) are missing then
import uses __name__, truncating the last segment if
the module is a submodule rather than a package __init__.py
(which it guesses from whether __path__ is defined).
The __name__ attempt should fail if there is no parent package (top level modules),
if __name__ is '__main__' (-m entry points), or both (scripts).
That is, if both __name__ has no subcomponents and the module does not seem
to be a package __init__ module then import should fail..
(cherry picked from commit
92420b3e679959a7d0ce875875601a4cee45231e )
Co-authored-by: Ben Lewis <benjimin@users.noreply.github.com>
Miss Islington (bot) [Wed, 11 Sep 2019 11:17:14 +0000 (04:17 -0700)]
bpo-32972: Document IsolatedAsyncioTestCase of unittest module (GH-15878) (GH-15918)
* Document `unittest.IsolatedAsyncioTestCase` API
* Add a simple example with respect to order of evaluation of setup and teardown calls.
https://bugs.python.org/issue32972
Automerge-Triggered-By: @asvetlov
(cherry picked from commit
6a9fd66f6e4445a418c43c92585b9e06d76df4b1 )
Co-authored-by: Xtreak <tir.karthi@gmail.com>
Miss Islington (bot) [Wed, 11 Sep 2019 11:09:53 +0000 (04:09 -0700)]
bpo-28494: install ziptestdata to fix install bot (GH-15902)
(cherry picked from commit
c37447481ec8f6d0e49d0587ec0de3f9e7d56b28 )
Co-authored-by: Gregory P. Smith <greg@krypto.org>
Miss Islington (bot) [Wed, 11 Sep 2019 10:53:16 +0000 (03:53 -0700)]
bpo-25810: Clarify eval() docs, it does not keywords (GH-15173)
(cherry picked from commit
7a0023e8d17566eb32c836b65c33663303a2224f )
Co-authored-by: smokephil <smokephil@gmail.com>
Miss Islington (bot) [Wed, 11 Sep 2019 10:46:53 +0000 (03:46 -0700)]
bpo-37585: Add clarification regarding comparing dict.values() (GH-14954)
(cherry picked from commit
6472ece5a0fe82809d3aa0ffb281796fcd252d76 )
Co-authored-by: Kyle Stanley <aeros167@gmail.com>
Miss Islington (bot) [Wed, 11 Sep 2019 10:43:30 +0000 (03:43 -0700)]
bpo-38081: Fixes ntpath.realpath('NUL') (GH-15899)
(cherry picked from commit
92521fea5d0d4aeb9b6a3c3fdd4654af700ad5c8 )
Co-authored-by: Steve Dower <steve.dower@python.org>
Andrew Svetlov [Wed, 11 Sep 2019 10:40:36 +0000 (13:40 +0300)]
[3.8] bpo-36373: Fix deprecation warnings (GH-15889) (GH-15901)
https://bugs.python.org/issue36373
(cherry picked from commit
7264e92b718d307cc499b2f10eab7644b00f0499 )
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
Miss Islington (bot) [Wed, 11 Sep 2019 10:39:36 +0000 (03:39 -0700)]
bpo-16438: Doc: confusing text regarding numeric precedence corrected (GH-10521)
(cherry picked from commit
4576b5431bd597df7581fe3c852b315e47e4b230 )
Co-authored-by: Anjali <anjali30malik@gmail.com>
Zachary Ware [Wed, 11 Sep 2019 10:31:12 +0000 (11:31 +0100)]
[3.8] bpo-37936: Systematically distinguish rooted vs. unrooted in .gitignore (GH-15823) (GH-15900)
A root cause of bpo-37936 is that it's easy to write a .gitignore
rule that's intended to apply to a specific file (e.g., the
`pyconfig.h` generated by `./configure`) but actually applies to all
similarly-named files in the tree (e.g., `PC/pyconfig.h`.)
Specifically, any rule with no non-trailing slashes is applied in an
"unrooted" way, to files anywhere in the tree. This means that if we
write the rules in the most obvious-looking way, then
* for specific files we want to ignore that happen to be in
subdirectories (like `Modules/config.c`), the rule will work
as intended, staying "rooted" to the top of the tree; but
* when a specific file we want to ignore happens to be at the root of
the repo (like `platform`), then the obvious rule (`platform`) will
apply much more broadly than intended: if someone tries to add a
file or directory named `platform` somewhere else in the tree, it
will unexpectedly get ignored.
That's surprising behavior that can make the .gitignore file's
behavior feel finicky and unpredictable.
To avoid it, we can simply always give a rule "rooted" behavior when
that's what's intended, by systematically using leading slashes.
Further, to help make the pattern obvious when looking at the file and
minimize any need for thinking about the syntax when adding new rules:
separate the rules into one group for each type, with brief comments
identifying them.
For most of these rules it's clear whether they're meant to be rooted
or unrooted, but in a handful of cases I've only guessed. In that
case the safer default (the choice that won't hide information) is the
narrower, rooted meaning, with a leading slash. If for some of these
the unrooted meaning is desired after all, it'll be easy to move them
to the unrooted section at the top.
(cherry picked from commit
455122a0094c8cfdf7e062eccc5e5b5885c75e8b )
Co-authored-by: Greg Price <gnprice@gmail.com>
Miss Islington (bot) [Wed, 11 Sep 2019 10:05:14 +0000 (03:05 -0700)]
bpo-37424: Avoid a hang in subprocess.run timeout output capture (GH-14490)
Fixes a possible hang when using a timeout on subprocess.run() while
capturing output. If the child process spawned its own children or otherwise
connected its stdout or stderr handles with another process, we could hang
after the timeout was reached and our child was killed when attempting to read
final output from the pipes.
(cherry picked from commit
580d2782f70f8e0bed7ec20abb03d740cb83b5da )
Co-authored-by: Gregory P. Smith <greg@krypto.org>
Miss Islington (bot) [Wed, 11 Sep 2019 06:56:10 +0000 (23:56 -0700)]
bpo-38034: Fix typo in logging.handlers.rst (GH-15708) (GH-15893)
(cherry picked from commit
efd5741ae953e50a6654e04cf731da86a1307296 )
Co-authored-by: wwuck <301402+wwuck@users.noreply.github.com>
Miss Islington (bot) [Tue, 10 Sep 2019 22:57:54 +0000 (15:57 -0700)]
bpo-28494: Test existing zipfile working behavior. (GH-15853)
Add unittests for executables with a zipfile appended to test_zipfile, as zipfile.is_zipfile and zipfile.ZipFile work properly on these today.
(cherry picked from commit
3f4db4a0bab073b768fae958e93288bd5d24eadd )
Co-authored-by: Gregory P. Smith <greg@krypto.org>
Miss Islington (bot) [Tue, 10 Sep 2019 17:46:52 +0000 (10:46 -0700)]
Remove unneeded assignment in PyBytes_Concat() (GH-15274)
The `wb.len = -1` assignment is unneeded since its introduction in
161d695fb0455ce52530d4f43a9eac4c738f64bb as `PyObject_GetBuffer` always fills it in.
(cherry picked from commit
afdeb189e97033b54cef44a7490d89d2013cb4e5 )
Co-authored-by: Sergey Fedoseev <fedoseev.sergey@gmail.com>
Miss Islington (bot) [Tue, 10 Sep 2019 17:13:55 +0000 (10:13 -0700)]
bpo-37574: Mention helper functions for find_spec documentation (GH-14739)
(cherry picked from commit
9cbb97b29eac4b23e916a3233f26b60ac69e335b )
Co-authored-by: jdkandersson <51036209+jdkandersson@users.noreply.github.com>
Miss Islington (bot) [Tue, 10 Sep 2019 16:38:07 +0000 (09:38 -0700)]
Docs: Small tweaks to c-api/introGH-Include_Files (GH-14698)
(cherry picked from commit
b6dafe51399f5c6313a00529118a6052b466942f )
Co-authored-by: Kyle Stanley <aeros167@gmail.com>
Miss Islington (bot) [Tue, 10 Sep 2019 16:24:06 +0000 (09:24 -0700)]
Correct minor grammatical mistake in open docs (GH-15865)
(cherry picked from commit
05184515f924c3880067aad87940dd466f751585 )
Co-authored-by: Andre Delfino <adelfino@gmail.com>
Miss Islington (bot) [Tue, 10 Sep 2019 16:20:16 +0000 (09:20 -0700)]
bpo-38089: Move Azure Pipelines to latest VM versions and make macOS tests optional (GH-15851)
(cherry picked from commit
801f925998cc393260f36f5ac77369fef2373ad1 )
Co-authored-by: Steve Dower <steve.dower@python.org>
Miss Islington (bot) [Tue, 10 Sep 2019 16:00:09 +0000 (09:00 -0700)]
Correct info about "f.read(size)". (GH13852)
In text mode, the "size" parameter indicates the number of characters, not bytes.
(cherry picked from commit
faff81c05f838b0b7a64bbc8c53c02a9b04bb79d )
Co-authored-by: William Andrea <william.j.andrea@gmail.com>
Victor Stinner [Tue, 10 Sep 2019 15:54:51 +0000 (17:54 +0200)]
bpo-37531: Enhance regrtest multiprocess timeout (GH-15345) (GH-15871)
* Write a message when killing a worker process
* Put a timeout on the second popen.communicate() call
(after killing the process)
* Put a timeout on popen.wait() call
* Catch popen.kill() and popen.wait() exceptions
(cherry picked from commit
de2d9eed8bc628533e1628b843cc4c7a5010f6e5 )
Miss Islington (bot) [Tue, 10 Sep 2019 15:42:56 +0000 (08:42 -0700)]
bpo-33602: Doc: Remove set and queue references from Data Types (GH-7055) (GH-15875)
(cherry picked from commit
912108891db52c2067889be1f4ce5713839807cd )
Co-authored-by: Andre Delfino <adelfino@gmail.com>
Miss Islington (bot) [Tue, 10 Sep 2019 15:04:56 +0000 (08:04 -0700)]
Note regarding + mode truncation applies to both text and binary mode (GH-11314) (GH-15869)
* Improve doc on open's mode +
* Improve wording
* Address comment from Rémi
(cherry picked from commit
c1d8c1cb8e90a54a3daaa7fcdb8d6ca7f08d6a73 )
Co-authored-by: Andre Delfino <adelfino@gmail.com>
Jason R. Coombs [Tue, 10 Sep 2019 14:58:29 +0000 (15:58 +0100)]
[3.8] bpo-38086: Sync importlib.metadata with importlib_metadata 0.21. (GH-15840) (#15861)
https://gitlab.com/python-devs/importlib_metadata/-/tags/0.21.
(cherry picked from commit
17499d82702432955d8e442a1871ff276ca64bc5 )
Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
Miss Islington (bot) [Tue, 10 Sep 2019 14:51:43 +0000 (07:51 -0700)]
bpo-37504: Fix documentation build with texinfo builder (GH-14606)
In the table model used by docutils, the `cols` attribute of `tgroup`
nodes is mandatory, see [1]. It is used in texinfo builder in [2].
[1]: https://www.oasis-open.org/specs/tm9901.htmGH-AEN348
[2]: https://github.com/sphinx-doc/sphinx/blob/v2.1.2/sphinx/writers/texinfo.pyGH-L1129
* Doc: Add texinfo support to the Makefile
(cherry picked from commit
c3d679fd398f42a2e489fbe3dab17fac1fb2439c )
Co-authored-by: Dmitry Shachnev <mitya57@users.noreply.github.com>
Miss Islington (bot) [Tue, 10 Sep 2019 14:51:29 +0000 (07:51 -0700)]
Fix subprocess docstring typo (GH-15812)
(cherry picked from commit
182e1d1f849757439f2031504f142fa4e1251611 )
Co-authored-by: Matthias <xmatthias@outlook.com>
Miss Islington (bot) [Tue, 10 Sep 2019 14:42:26 +0000 (07:42 -0700)]
bpo-38088: Fixes distutils not finding vcruntime140.dll with only v142 toolset installed (GH-15849)
(cherry picked from commit
cd8221152dd235ec5d06e3d9d0d8787645bbac8e )
Co-authored-by: Steve Dower <steve.dower@python.org>
Miss Islington (bot) [Tue, 10 Sep 2019 14:37:56 +0000 (07:37 -0700)]
Fix calling order of PyEval_InitThreads. (GH-15836)
As described in Doc/c-api/init.rst, PyEval_InitThreads() cannot be called
before Py_Initialize() function.
(cherry picked from commit
9e61066355b4b55c873d56f5f106a22463b56862 )
Co-authored-by: Kenta Murata <mrkn@users.noreply.github.com>
Steve Dower [Tue, 10 Sep 2019 14:31:26 +0000 (15:31 +0100)]
bpo-37913: document that __length_hint__ can return NotImplemented (GH-15383)
Miss Islington (bot) [Tue, 10 Sep 2019 14:31:07 +0000 (07:31 -0700)]
bpo-38090: Fix reference leak in ceval.c (GH-15848)
(cherry picked from commit
a511c7a4961a684db1f8d0ed438822d87d7d3dcf )
Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
Steve Dower [Tue, 10 Sep 2019 14:29:28 +0000 (15:29 +0100)]
bpo-38087: Fix case sensitivity in test_pathlib and test_ntpath (GH-15850)
Miss Islington (bot) [Tue, 10 Sep 2019 13:44:32 +0000 (06:44 -0700)]
bpo-38066: Hide internal Stream methods (GH-15762)
feed_eof(), feed_data(), set_exception(), and set_transport() are prefixed with underscore now.
https://bugs.python.org/issue38066
(cherry picked from commit
12c122ae958a55c9874ed4c7d7805ceb084411d7 )
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
Miss Islington (bot) [Tue, 10 Sep 2019 13:32:56 +0000 (06:32 -0700)]
bpo-21018: added missing documentation about escaping characters for configparser (GH-6137) (GH-15846)
Document how $ and % can be escaped in configparser.
(cherry picked from commit
9a94093189417adddd6b59d6c80cc5544630c8aa )
Co-authored-by: Arun Persaud <arun@nubati.net>
Miss Islington (bot) [Tue, 10 Sep 2019 13:21:57 +0000 (06:21 -0700)]
closes bpo-25461: Update os.walk() docstring to match the online docs. (GH-11836)
(cherry picked from commit
734f1202a50641eb2c4bfbcd5b75247c1dc99a8f )
Co-authored-by: Bernt Røskar Brenna <bernt.brenna@gmail.com>
Miss Islington (bot) [Tue, 10 Sep 2019 13:16:00 +0000 (06:16 -0700)]
bpo-37251: Removes __code__ check from _is_async_obj. (GH-15830)
(cherry picked from commit
f1a297acb60b88917712450ebd3cfa707e6efd6b )
Co-authored-by: Lisa Roach <lisaroach14@gmail.com>
Miss Islington (bot) [Tue, 10 Sep 2019 13:15:19 +0000 (06:15 -0700)]
docs: Add references to AsyncMock in unittest.mock.patch (GH-13681)
Update the docs as patch can now return an AsyncMock if the patched
object is an async function.
(cherry picked from commit
f5e7f39d2916ed150e80381faed125f405a11e11 )
Co-authored-by: Mario Corchero <mcorcherojim@bloomberg.net>
Miss Islington (bot) [Tue, 10 Sep 2019 12:55:12 +0000 (05:55 -0700)]
bpo-37619: update_one_slot() should not ignore wrapper descriptors for wrong type (GH-15838)
(cherry picked from commit
57ea33560662e0f20a3b0334bb20065771edf4da )
Co-authored-by: Jeroen Demeyer <J.Demeyer@UGent.be>
Miss Islington (bot) [Tue, 10 Sep 2019 12:50:14 +0000 (05:50 -0700)]
bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [queue] (GH-13950)
This PR deprecate explicit loop parameters in all public asyncio APIs
This issues is split to be easier to review.
fourth step: queue.py
https://bugs.python.org/issue36373
(cherry picked from commit
9008be303a89bfab8c3314c6a42330b5523adc8b )
Co-authored-by: Emmanuel Arias <emmanuelarias30@gmail.com>
Miss Islington (bot) [Tue, 10 Sep 2019 11:26:54 +0000 (04:26 -0700)]
bpo-36373: Deprecate explicit loop parameter in all public asyncio APIs [locks] (GH-13920)
This PR deprecate explicit loop parameters in all public asyncio APIs
This issues is split to be easier to review.
Third step: locks.py
https://bugs.python.org/issue36373
(cherry picked from commit
537877d85d1c27d2c2f5189e39da64a7a0c413d3 )
Co-authored-by: Emmanuel Arias <emmanuelarias30@gmail.com>
Miss Islington (bot) [Tue, 10 Sep 2019 11:08:52 +0000 (04:08 -0700)]
bpo-37052: Add examples for mocking async iterators and context managers (GH-14660)
Add examples for mocking asynchronous iterators and asynchronous context managers.
https://bugs.python.org/issue37052
(cherry picked from commit
c8dfa7333d6317d7cd8c5c7366023f5a668e3f91 )
Co-authored-by: Xtreak <tir.karthi@gmail.com>
Miss Islington (bot) [Tue, 10 Sep 2019 10:54:48 +0000 (03:54 -0700)]
Remove macOS tests from Travis. (GH-15809)
Azure runs macOS, so we don't need Travis to do it.
(cherry picked from commit
e45b217ae0e83cfb367e9769cae59b9a5505f9b4 )
Co-authored-by: Benjamin Peterson <benjamin@python.org>
Miss Islington (bot) [Tue, 10 Sep 2019 10:13:36 +0000 (03:13 -0700)]
Fix typo in dict object comment (GH-15814)
(cherry picked from commit
359143c68659d165f52320d368667e0eff279dc5 )
Co-authored-by: dalgarno <32097481+dalgarno@users.noreply.github.com>
Victor Stinner [Tue, 10 Sep 2019 09:57:31 +0000 (11:57 +0200)]
Revert "bpo-33418: Add tp_clear for function object (GH-8058)" (GH-15826)
This reverts commit
3c452404ae178b742967589a0bb4a5ec768d76e0 .
Steve Dower [Tue, 10 Sep 2019 09:02:04 +0000 (02:02 -0700)]
bpo-35941: Fix performance regression in SSL certificate code (GH-12610)
Accumulate certificates in a set instead of doing a costly list contain
operation. A Windows cert store can easily contain over hundred
certificates. The old code would result in way over 5,000 comparison
operations
Signed-off-by: Christian Heimes <christian@python.org>
Miss Islington (bot) [Tue, 10 Sep 2019 07:31:56 +0000 (00:31 -0700)]
bpo-37662: Documented venv.EnvBuilder.upgrade_dependencies(). (GH-15768)
(cherry picked from commit
264e034f990240e2aa379d8484b15b9e70c1fad5 )
Co-authored-by: Vinay Sajip <vinay_sajip@yahoo.co.uk>
Miss Islington (bot) [Tue, 10 Sep 2019 07:31:34 +0000 (00:31 -0700)]
bpo-37383: Updates docs to reflect AsyncMock call_count after await. (GH-15761)
* bpo-351428: Updates documentation to reflect AsyncMock call_count after await.
* Adds skip and fixes warning.
* Removes extra >>>.
* Adds ... in front of await mock().
(cherry picked from commit
b9f65f01fd761da7799f36d29b54518399d3458e )
Co-authored-by: Lisa Roach <lisaroach14@gmail.com>
Miss Islington (bot) [Tue, 10 Sep 2019 03:29:01 +0000 (20:29 -0700)]
bpo-38077: IDLE no longer adds 'argv' to the user namespace (GH-15818)
This only happened when initializing the subprocess to run a module.
This recent bug only affected 3.7.4 and 3.8.0b2 to 3.8.0b4.
(cherry picked from commit
c59295a1ca304f37ca136dd7efca9e560db27d28 )
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Zachary Ware [Mon, 9 Sep 2019 22:11:23 +0000 (23:11 +0100)]
[3.8] bpo-34293: Fix PDF documentation paper size (GH-8585) (GH-15816)
The "A4" pdfs were previously the wrong size due to a change in the options in Sphinx 1.5.
See also sphinx-doc/sphinxGH-5235
(cherry picked from commit
b5381f669718aa19690f42f3b8bd88f03045b9d2 )
Authored-by: Jean-François B <jfbu@free.fr>
Miss Islington (bot) [Mon, 9 Sep 2019 18:41:13 +0000 (11:41 -0700)]
bpo-36502: Update link to UAX GH-44, the Unicode doc on the UCD. (GH-15301)
The link we have points to the version from Unicode 6.0.0, dated 2010.
There have been numerous updates to it since then:
https://www.unicode.org/reports/tr44/GH-Modifications
Change the link to one that points to the current version. Also, use HTTPS.
(cherry picked from commit
64c6ac74e254d31f93fcc74bf02b3daa7d3e3f25 )
Co-authored-by: Greg Price <gnprice@gmail.com>
Miss Islington (bot) [Mon, 9 Sep 2019 17:59:18 +0000 (10:59 -0700)]
bpo-37649: Fix exec_prefix check (GH-14897)
(cherry picked from commit
09090d04ef8d2f4c94157b852d3d530a51e13d22 )
Co-authored-by: Orivej Desh <orivej@gmx.fr>
Miss Islington (bot) [Mon, 9 Sep 2019 17:44:46 +0000 (10:44 -0700)]
Fix punctuation in `os.execvpe` docstring. (GH-15051)
(cherry picked from commit
fb6807b043ab586428225920373e551b0432bc40 )
Co-authored-by: Hasan Ramezani <hasan.r67@gmail.com>
Miss Islington (bot) [Mon, 9 Sep 2019 17:31:31 +0000 (10:31 -0700)]
bpo-35803: Document and test dir=PathLike for tempfile (GH-11644)
Co-Authored-By: Ammar Askar <ammar_askar@hotmail.com>
(cherry picked from commit
370138ba9c29595df773cc057d17ea26fb6f21bd )
Co-authored-by: Anthony Sottile <asottile@umich.edu>
Miss Islington (bot) [Mon, 9 Sep 2019 17:18:51 +0000 (10:18 -0700)]
Clarify that shutil's copy functions can accept path-like values (GH-15141)
(cherry picked from commit
9488a5289de2ceecdfd2098cd70d215f96c4e745 )
Co-authored-by: Boris Verhovsky <boris.verk@gmail.com>
Miss Islington (bot) [Mon, 9 Sep 2019 17:18:09 +0000 (10:18 -0700)]
bpo-38070: visit_decref() calls _PyObject_IsFreed() (GH-15782)
In debug mode, visit_decref() now calls _PyObject_IsFreed() to ensure
that the object is not freed. If it's freed, the program fails with
an assertion error and Python dumps informations about the freed
object.
(cherry picked from commit
d91d4de31745fc1ed4c7e6c208917827c9c472b6 )
Co-authored-by: Victor Stinner <vstinner@redhat.com>
Steve Dower [Mon, 9 Sep 2019 16:45:18 +0000 (09:45 -0700)]
bpo-20490: Improve circular import error message (GH-15308)
Miss Islington (bot) [Mon, 9 Sep 2019 16:24:16 +0000 (09:24 -0700)]
bpo-38006: Avoid closure in weakref.WeakValueDictionary (GH-15641)
weakref.WeakValueDictionary defines a local remove() function used as
callback for weak references. This function was created with a
closure. Modify the implementation to avoid the closure.
(cherry picked from commit
a2af05a0d3f0da06b8d432f52efa3ecf29038532 )
Co-authored-by: Victor Stinner <vstinner@redhat.com>