]>
granicus.if.org Git - python/log
Miss Islington (bot) [Sat, 24 Aug 2019 05:54:07 +0000 (22:54 -0700)]
bpo-19119: Remove invalid test and rename a misnamed test (GH-15442) (GH-15447)
(cherry picked from commit
4101181fd87c2fab6456663d3c8cc99377cf0463 )
Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
Miss Islington (bot) [Sat, 24 Aug 2019 04:16:28 +0000 (21:16 -0700)]
Fix funny typo in Doc/bugs. (GH-15412)
Fix typo in description of link to mozilla bug report writing guidelines.
Though the URL is misleading, we're indeed trying to write bug _reports_, not to add bugs.
Automerge-Triggered-By: @ned-deily
(cherry picked from commit
e17f201cd9293f16593cc507d86f2c0e17b8f2c9 )
Co-authored-by: Antoine <43954001+awecx@users.noreply.github.com>
Miss Islington (bot) [Fri, 23 Aug 2019 22:39:27 +0000 (15:39 -0700)]
bpo-37798: Add C fastpath for statistics.NormalDist.inv_cdf() (GH-15266) (GH-15441)
(cherry picked from commit
0a18ee4be7ba215f414bef04598e0849504f9f1e )
Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
Victor Stinner [Fri, 23 Aug 2019 19:16:51 +0000 (21:16 +0200)]
bpo-36763: PyConfig_Read() handles PySys_AddXOption() (GH-15431) (GH-15435)
PyConfig_Read() is now responsible to handle early calls to
PySys_AddXOption() and PySys_AddWarnOption().
Options added by PySys_AddXOption() are now handled the same way than
PyConfig.xoptions and command line -X options.
For example, PySys_AddXOption(L"faulthandler") enables faulthandler
as expected.
(cherry picked from commit
120b707a6d43452e067daa55a8fdca69f9424abc )
Miss Islington (bot) [Fri, 23 Aug 2019 19:04:27 +0000 (12:04 -0700)]
bpo-37549: os.dup() fails for standard streams on Windows 7 (GH-15389)
(cherry picked from commit
5be666010e4df65dc4d831435cc92340ea369f94 )
Co-authored-by: Zackery Spytz <zspytz@gmail.com>
Miss Islington (bot) [Fri, 23 Aug 2019 17:56:44 +0000 (10:56 -0700)]
bpo-26589: Add http status code 451 (GH-15413) (GH-15436)
(cherry picked from commit
8f080b09953a2d862de5c74edf414a54ea3dbea5 )
Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
Miss Islington (bot) [Fri, 23 Aug 2019 17:05:59 +0000 (10:05 -0700)]
bpo-36763, doc: Add links in the new C API init doc (GH-15433)
(cherry picked from commit
1beb7c3de9c3d0e802e4267a11d937e8f024d661 )
Co-authored-by: Victor Stinner <vstinner@redhat.com>
Miss Islington (bot) [Fri, 23 Aug 2019 16:24:42 +0000 (09:24 -0700)]
bpo-36763: Implement PyWideStringList_Insert() of PEP 587 (GH-15423)
(cherry picked from commit
3842f2997fbd4dc840986aad2bb94656815e243b )
Co-authored-by: Victor Stinner <vstinner@redhat.com>
GeeTransit [Fri, 23 Aug 2019 16:23:43 +0000 (12:23 -0400)]
[3.8] Fix typo (inifite -> infinite) (GH-15429)
The same typo exists in the changelogs of 3.6 and 3.7.
Automerge-Triggered-By: @Mariatta
Victor Stinner [Fri, 23 Aug 2019 16:17:52 +0000 (17:17 +0100)]
Fix _PyTime_MIN/MAX values (GH-15384) (GH-15426)
_PyTime_t type is defined as int64_t, and so min/max are INT64_MIN/INT64_MAX,
not PY_LLONG_MIN/PY_LLONG_MAX.
(cherry picked from commit
8e76c456226438f2e4931ce7baf05ac8faae34a1 )
Victor Stinner [Fri, 23 Aug 2019 11:22:14 +0000 (12:22 +0100)]
bpo-37926: Fix PySys_SetArgvEx(0, NULL, 0) crash (GH-15415) (GH-15420)
empty_argv is no longer static in Python 3.8, but it is declared in
a temporary scope, whereas argv keeps a reference to it.
empty_argv memory (allocated on the stack) is reused by
make_sys_argv() code which is inlined when using gcc -O3.
Define empty_argv in PySys_SetArgvEx() body, to ensure
that it remains valid for the whole lifetime of
the PySys_SetArgvEx() call.
(cherry picked from commit
c48682509dc49b43fe914fe6c502bc390345d1c2 )
Miss Islington (bot) [Fri, 23 Aug 2019 10:06:27 +0000 (03:06 -0700)]
Correct minor grammar mistake (GH-15404)
(cherry picked from commit
d288b29fc652d27191bde3b3c9145c2eb8169929 )
Co-authored-by: Andre Delfino <adelfino@gmail.com>
Miss Islington (bot) [Fri, 23 Aug 2019 08:48:40 +0000 (01:48 -0700)]
bpo-37915: Fix comparison between tzinfo objects and timezone objects (GH-15390)
https://bugs.python.org/issue37915
Automerge-Triggered-By: @pablogsal
(cherry picked from commit
4be11c009abe88175fa164b45e4838e7267dfa97 )
Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
Miss Islington (bot) [Fri, 23 Aug 2019 06:52:12 +0000 (23:52 -0700)]
bpo-30826: Improve control flow examples (GH-15407) (GH-15410)
(cherry picked from commit
6fcb6cfb139ade1aac6dbee0b18ca72b18cbe0d2 )
Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
Miss Islington (bot) [Fri, 23 Aug 2019 06:45:57 +0000 (23:45 -0700)]
bpo-12634: Clarify an awkward section of the tutorial (GH-15406) (GH-15409)
(cherry picked from commit
483ae0cf1dcf46f8b71c4bf32419dd138e908553 )
Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
Miss Islington (bot) [Thu, 22 Aug 2019 22:50:32 +0000 (15:50 -0700)]
bpo-30550: Clarify JSON ordering guarantees (GH-15397) (GH-15403)
(cherry picked from commit
657008ea0336ff4f275ed3f0c2b6dd2e52de2bba )
Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
Miss Islington (bot) [Thu, 22 Aug 2019 18:11:27 +0000 (11:11 -0700)]
bpo-28556: Add a regression test to typing (GH-15396)
This adds a regression test for the issue found in the Python 2 backport, see https://github.com/python/typing/issues/656
https://bugs.python.org/issue28556
(cherry picked from commit
8889627b53e1eea2e32590f1867fbb0b0fc7407f )
Co-authored-by: Ivan Levkivskyi <levkivskyi@gmail.com>
Miss Islington (bot) [Thu, 22 Aug 2019 16:39:52 +0000 (09:39 -0700)]
bpo-14050: Note that not all data can be sorted (GH-15381) (GH-15395)
(cherry picked from commit
4109263a7edce11194e301138cf66fa2d07f7ce4 )
Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
Miss Islington (bot) [Thu, 22 Aug 2019 15:59:18 +0000 (08:59 -0700)]
bpo-27961: Remove leftovers from the times when long long wasn't required (GH-15388)
(cherry picked from commit
a38e9d139929a227e3899fbb638bc46c6cc6d8ba )
Co-authored-by: Sergey Fedoseev <fedoseev.sergey@gmail.com>
Miss Islington (bot) [Thu, 22 Aug 2019 06:30:26 +0000 (23:30 -0700)]
Add missing space to warning message (GH-14915) (GH-15379)
This typo was introduced in GH-13409 when changing the message text.
(cherry picked from commit
c4106af38bbcb180725fe0d9478e6a11f7a5e7b9 )
Co-authored-by: Florian Bruhin <me@the-compiler.org>
Miss Islington (bot) [Thu, 22 Aug 2019 01:01:22 +0000 (18:01 -0700)]
bpo-37834: Fix test on Windows 7 (GH-15377)
(cherry picked from commit
374be59b8e479afa8c7a8ae6e77e98915e2f6d45 )
Co-authored-by: Steve Dower <steve.dower@python.org>
Steve Dower [Thu, 22 Aug 2019 00:23:38 +0000 (17:23 -0700)]
bpo-9949: Call normpath() in realpath() and avoid unnecessary prefixes (GH-15376)
Miss Islington (bot) [Wed, 21 Aug 2019 23:53:56 +0000 (16:53 -0700)]
bpo-36311: Fixes decoding multibyte characters around chunk boundaries and improves decoding performance (GH-15083)
(cherry picked from commit
7ebdda0dbee7df6f0c945a7e1e623e47676e112d )
Co-authored-by: Steve Dower <steve.dower@python.org>
Steve Dower [Wed, 21 Aug 2019 22:52:42 +0000 (15:52 -0700)]
bpo-37834: Normalise handling of reparse points on Windows (GH-15370)
bpo-37834: Normalise handling of reparse points on Windows
* ntpath.realpath() and nt.stat() will traverse all supported reparse points (previously was mixed)
* nt.lstat() will let the OS traverse reparse points that are not name surrogates (previously would not traverse any reparse point)
* nt.[l]stat() will only set S_IFLNK for symlinks (previous behaviour)
* nt.readlink() will read destinations for symlinks and junction points only
bpo-1311: os.path.exists('nul') now returns True on Windows
* nt.stat('nul').st_mode is now S_IFCHR (previously was an error)
Miss Islington (bot) [Wed, 21 Aug 2019 21:09:33 +0000 (14:09 -0700)]
bpo-9949: Enable symlink traversal for ntpath.realpath (GH-15287)
(cherry picked from commit
75e064962ee0e31ec19a8081e9d9cc957baf6415 )
Co-authored-by: Steve Dower <steve.dower@python.org>
Miss Islington (bot) [Wed, 21 Aug 2019 19:18:26 +0000 (12:18 -0700)]
Fix difflib `?` hint in diff output when dealing with tabs (GH-15201)
(cherry picked from commit
e1c638da6a065af6803028ced1afcc679e63f59d )
Co-authored-by: Anthony Sottile <asottile@umich.edu>
Miss Islington (bot) [Wed, 21 Aug 2019 17:20:49 +0000 (10:20 -0700)]
Update asyncio.ensure_future() documentation (GH-15347) (GH-15364)
Added back mention that ensure_future actually scheduled obj. This documentation just mentions what ensure_future returns, so I did not realize that ensure_future also schedules obj.
(cherry picked from commit
092911d5c0d8f6db8a0cb02fecd73dbb650f9e2e )
Co-authored-by: Roger Iyengar <ri@rogeriyengar.com>
Miss Islington (bot) [Wed, 21 Aug 2019 11:38:04 +0000 (04:38 -0700)]
bpo-37823: Fix open() link in telnetlib doc (GH-15281)
Fixed wrong link to Telnet.open() method in telnetlib documentation.
(cherry picked from commit
e0b6117e2723327d6741d0aa599408514add5b30 )
Co-authored-by: Michael Anckaert <michael.anckaert@sinax.be>
Miss Islington (bot) [Wed, 21 Aug 2019 04:08:57 +0000 (21:08 -0700)]
bpo-35518: Skip test that relies on a deceased network service. (GH-15349)
If this service had thoroughly vanished, we could just ignore the
test until someone gets around to either recreating such a service
or redesigning the test to somehow work locally. The
`support.transient_internet` mechanism catches the failure to
resolve the domain name, and skips the test.
But in fact the domain snakebite.net does still exist, as do its
nameservers -- and they can be quite slow to reply. As a result
this test can easily take 20-30s before it gets auto-skipped.
So, skip the test explicitly up front.
(cherry picked from commit
5b95a1507e349da5adae6d2ab57deac3bdd12f15 )
Co-authored-by: Greg Price <gnprice@gmail.com>
Victor Stinner [Tue, 20 Aug 2019 12:44:32 +0000 (13:44 +0100)]
bpo-37732: Fix GCC warning in _PyObject_Malloc() (GH-15333) (GH-15342)
pymalloc_alloc() now returns directly the pointer, return NULL on
memory allocation error.
allocate_from_new_pool() already uses NULL as marker for "allocation
failed".
(cherry picked from commit
18f8dcfa10d8a858b152d12a9ad8fa83b7e967f0 )
Miss Islington (bot) [Tue, 20 Aug 2019 05:59:21 +0000 (22:59 -0700)]
bpo-37868: Improve is_dataclass for instances. (GH-15325)
(cherry picked from commit
b0f4dab8735f692bcfedcf0fa9a25e238a554bab )
Co-authored-by: Eric V. Smith <ericvsmith@users.noreply.github.com>
Miss Islington (bot) [Mon, 19 Aug 2019 17:14:31 +0000 (10:14 -0700)]
Remove 'unstable' warning for Windows Store package in docs (GH-15334)
(cherry picked from commit
cf9360e524acafdce99a8a1e48947fd7da06f3d4 )
Co-authored-by: Steve Dower <steve.dower@python.org>
Greg Price [Mon, 19 Aug 2019 09:53:22 +0000 (02:53 -0700)]
bpo-36502: Correct documentation of str.isspace() (GH-15019) (GH-15296)
The documented definition was much broader than the real one:
there are tons of characters with general category "Other",
and we don't (and shouldn't) treat most of them as whitespace.
Rewrite the definition to agree with the comment on
_PyUnicode_IsWhitespace, and with the logic in makeunicodedata.py,
which is what generates that function and so ultimately governs.
Add suitable breadcrumbs so that a reader who wants to pin down
exactly what this definition means (what's a "bidirectional class"
of "B"?) can do so. The `unicodedata` module documentation is an
appropriate central place for our references to Unicode's own copious
documentation, so point there.
Also add to the isspace() test a thorough check that the
implementation agrees with the intended definition.
Miss Islington (bot) [Sat, 17 Aug 2019 21:11:28 +0000 (14:11 -0700)]
bpo-36266: Add module name in ImportError when DLL not found on Windows (GH-15180)
(cherry picked from commit
24fe46081be3d1c01b3d21cb39bc3492ab4485a3 )
Co-authored-by: shireenrao <shireenrao@gmail.com>
Miss Islington (bot) [Sat, 17 Aug 2019 20:51:57 +0000 (13:51 -0700)]
[3.8] fix link to time function from time_ns doc (GH-15285) (GH-15321)
Because mod, func, class, etc all share one namespace, :func:time creates a link to the time module doc page rather than the time.time function.
(cherry picked from commit
1b1d0514adbcdd859817c63d1410455c64660d78 )
Co-authored-by: Éric Araujo <merwok@netwok.org>
Automerge-Triggered-By: @merwok
Miss Islington (bot) [Fri, 16 Aug 2019 08:27:35 +0000 (01:27 -0700)]
bpo-37256: Wording in Request class docs (GH-14792)
* bpo-37256: Wording in Request class docs
* 📜🤖 Added by blurb_it.
* Update Misc/NEWS.d/next/Documentation/2019-07-16-14-48-12.bpo-37256.qJTrBb.rst
Co-Authored-By: Kyle Stanley <aeros167@gmail.com>
(cherry picked from commit
38c7199beb30ae9a5005c0f0d9df9fae0da3680a )
Co-authored-by: Ngalim Siregar <ngalim.siregar@gmail.com>
Paul Ganssle [Thu, 15 Aug 2019 19:08:57 +0000 (15:08 -0400)]
bpo-37642: Update acceptable offsets in timezone (GH-14878) (#15227)
This fixes an inconsistency between the Python and C implementations of
the datetime module. The pure python version of the code was not
accepting offsets greater than 23:59 but less than 24:00. This is an
accidental legacy of the original implementation, which was put in place
before tzinfo allowed sub-minute time zone offsets.
GH-14878
(cherry picked from commit
92c7e30adf5c81a54d6e5e555a6bdfaa60157a0d )
Miss Islington (bot) [Thu, 15 Aug 2019 16:38:22 +0000 (09:38 -0700)]
Indent code inside if block. (GH-15284)
Without indendation, seems like strcpy line is parallel to `if` condition.
(cherry picked from commit
69f37bcb28d7cd78255828029f895958b5baf6ff )
Co-authored-by: Hansraj Das <raj.das.136@gmail.com>
Miss Islington (bot) [Thu, 15 Aug 2019 12:52:51 +0000 (05:52 -0700)]
[3.8] Replace usage of the obscure PEM_read_bio_X509_AUX with the more standard PEM_read_bio_X509 (GH-15303) (GH-15304)
X509_AUX is an odd, note widely used, OpenSSL extension to the X509 file format. This function doesn't actually use any of the extra metadata that it parses, so just use the standard API.
Automerge-Triggered-By: @tiran
(cherry picked from commit
40dad9545aad4ede89abbab1c1beef5303d9573e )
Co-authored-by: Alex Gaynor <alex.gaynor@gmail.com>
Automerge-Triggered-By: @tiran
Miss Islington (bot) [Wed, 14 Aug 2019 22:22:02 +0000 (15:22 -0700)]
bpo-37775: Update compileall doc for invalidation_mode parameter (GH-15148)
(cherry picked from commit
68e495df909a33e719e3f1ef5b4893ec785e10a4 )
Co-authored-by: Hai Shi <shihai1992@gmail.com>
Miss Islington (bot) [Wed, 14 Aug 2019 22:02:12 +0000 (15:02 -0700)]
bpo-21131: Fix faulthandler.register(chain=True) stack (GH-15276)
faulthandler now allocates a dedicated stack of SIGSTKSZ*2 bytes,
instead of just SIGSTKSZ bytes. Calling the previous signal handler
in faulthandler signal handler uses more than SIGSTKSZ bytes of stack
memory on some platforms.
(cherry picked from commit
ac827edc493d3ac3f5b9b0cc353df1d4b418a9aa )
Co-authored-by: Victor Stinner <vstinner@redhat.com>
Miss Islington (bot) [Wed, 14 Aug 2019 21:47:43 +0000 (14:47 -0700)]
bpo-37811: FreeBSD, OSX: fix poll(2) usage in sockets module (GH-15202)
FreeBSD implementation of poll(2) restricts the timeout argument to be
either zero, or positive, or equal to INFTIM (-1).
Unless otherwise overridden, socket timeout defaults to -1. This value
is then converted to milliseconds (-1000) and used as argument to the
poll syscall. poll returns EINVAL (22), and the connection fails.
This bug was discovered during the EINTR handling testing, and the
reproduction code can be found in
https://bugs.python.org/issue23618 (see connect_eintr.py,
attached). On GNU/Linux, the example runs as expected.
This change is trivial:
If the supplied timeout value is negative, truncate it to -1.
(cherry picked from commit
28146206578ebe1b84b48e6f255738a227058c04 )
Co-authored-by: Artem Khramov <akhramov@pm.me>
Miss Islington (bot) [Wed, 14 Aug 2019 17:24:04 +0000 (10:24 -0700)]
bpo-37849: IDLE: fix completion window positioning above line (GH-15267)
(cherry picked from commit
71662dc2f12a7e77e5e1dfe64ec87c1b459c3f59 )
Co-authored-by: Tal Einat <taleinat+github@gmail.com>
Victor Stinner [Wed, 14 Aug 2019 14:31:32 +0000 (16:31 +0200)]
[3.8] bpo-37531: Fix regrtest timeout for subprocesses (GH-15072) (GH-15279)
* bpo-37531: Fix regrtest timeout for subprocesses (GH-15072)
Co-Authored-By: Joannah Nanjekye <joannah.nanjekye@ibm.com>
(cherry picked from commit
b0c8369c603633f445ccbb5ca7a8742145ff9eec )
* bpo-36511: Fix failures in Windows ARM32 buildbot (GH-15181)
(cherry picked from commit
ed70a344b5fbddea85726ebc1964ee0cfdef9c40 )
Backport also minor fixes from master (fix typo, remove importlib import).
Miss Islington (bot) [Wed, 14 Aug 2019 10:49:13 +0000 (03:49 -0700)]
bpo-37738: Fix curses addch(str, color_pair) (GH-15071)
Fix the implementation of curses addch(str, color_pair): pass the
color pair to setcchar(), instead of always passing 0 as the color
pair.
(cherry picked from commit
077af8c2c93dd71086e2c5e5ff1e634b6da8f214 )
Co-authored-by: Victor Stinner <vstinner@redhat.com>
Miss Islington (bot) [Wed, 14 Aug 2019 10:08:46 +0000 (03:08 -0700)]
bpo-37681: no_sanitize_thread support from GCC 5.1 (GH-15096)
Fix the following warning with GCC 4.8.5:
Objects/obmalloc.c: warning: ‘no_sanitize_thread’ attribute directive ignored
(cherry picked from commit
7e479c82218450255572e3f5fa1549dc283901ea )
Co-authored-by: Hai Shi <shihai1992@gmail.com>
Miss Islington (bot) [Tue, 13 Aug 2019 21:52:20 +0000 (14:52 -0700)]
bpo-25172: Add test for crypt ImportError on Windows (GH-15252)
(cherry picked from commit
243a73deee4ac61fe06602b7ed56b6df01e19f27 )
Co-authored-by: shireenrao <shireenrao@gmail.com>
Miss Islington (bot) [Tue, 13 Aug 2019 21:27:14 +0000 (14:27 -0700)]
bpo-25172: Raise appropriate ImportError msg when crypt module used on Windows (GH-15149)
(cherry picked from commit
f4e725f224b864bf9bf405ff7f863cda46fca1cd )
Co-authored-by: shireenrao <shireenrao@gmail.com>
Miss Islington (bot) [Tue, 13 Aug 2019 19:12:55 +0000 (12:12 -0700)]
bpo-37814: Document the empty tuple type annotation syntax (GH-15208)
https://bugs.python.org/issue37814:
> The empty tuple syntax in type annotations, `Tuple[()]`, is not obvious from the examples given in the documentation (I naively expected `Tuple[]` to work); it has been documented in PEP 484 and in mypy, but not in the documentation for the typing module.
https://bugs.python.org/issue37814
(cherry picked from commit
8a784af750fa82c8355903309e5089eb2b60c16b )
Co-authored-by: Josh Holland <anowlcalledjosh@gmail.com>
Miss Islington (bot) [Tue, 13 Aug 2019 18:11:49 +0000 (11:11 -0700)]
bpo-37583: Add err 113 to support.get_socket_conn_refused_errs() (GH-14729)
Add error number 113 EHOSTUNREACH to get_socket_conn_refused_errs()
of test.support.
(cherry picked from commit
1ac2a83f30312976502fda042db5ce18d10ceec2 )
Co-authored-by: Hai Shi <shihai1992@gmail.com>
Miss Islington (bot) [Tue, 13 Aug 2019 17:54:28 +0000 (10:54 -0700)]
bpo-37841: Remove python_uwp dependency on msvcp140.dll (GH-15253)
(cherry picked from commit
b0dace3e979381426385c551b116d0f1434096ee )
Co-authored-by: Steve Dower <steve.dower@python.org>
Miss Islington (bot) [Tue, 13 Aug 2019 06:06:16 +0000 (23:06 -0700)]
bpo-37760: Mark all generated Unicode data headers as generated. (GH-15171)
This causes them to be collapsed by default in diffs shown on GitHub.
https://bugs.python.org/issue37760
Automerge-Triggered-By: @benjaminp
(cherry picked from commit
4e3dfcc4b987e683476a1b16456e57d3c9f581cb )
Co-authored-by: Greg Price <gnprice@gmail.com>
Miss Islington (bot) [Tue, 13 Aug 2019 06:04:21 +0000 (23:04 -0700)]
bpo-37760: Mark all generated Unicode data headers as generated. (GH-15171)
This causes them to be collapsed by default in diffs shown on GitHub.
https://bugs.python.org/issue37760
Automerge-Triggered-By: @benjaminp
(cherry picked from commit
4e3dfcc4b987e683476a1b16456e57d3c9f581cb )
Co-authored-by: Greg Price <gnprice@gmail.com>
Raymond Hettinger [Tue, 13 Aug 2019 01:02:58 +0000 (18:02 -0700)]
bpo-37759: Second round of edits to Whatsnew 3.8 (GH-15204) (GH-15240)
(cherry picked from commit
66a34d35e4c97da9840a29ba9fba76721021c463 )
Miss Islington (bot) [Mon, 12 Aug 2019 22:16:36 +0000 (15:16 -0700)]
Remove versioned executables from non-APPX packages (GH-15237)
(cherry picked from commit
c1aeb292d206e12b900dc4f7f816246c3a57c2ac )
Co-authored-by: Steve Dower <steve.dower@python.org>
Miss Islington (bot) [Mon, 12 Aug 2019 21:35:16 +0000 (14:35 -0700)]
bpo-37354: Sign Activate.ps1 for release (GH-15235)
(cherry picked from commit
3e34a25a7a5c9ea2c46f2daeeb60f072faa5aaa1 )
Co-authored-by: Steve Dower <steve.dower@python.org>
Miss Islington (bot) [Mon, 12 Aug 2019 21:09:26 +0000 (14:09 -0700)]
[3.8] bpo-37354: Make Powershell Activate.ps1 script static to allow for signing (GH-14967)
- Remove use of replacement text in the script
- Make use of the pyvenv.cfg file for prompt value.
- Add parameters to allow more flexibility
- Make use of the current path, and assumptions about where env puts things, to compensate
- Make the script a bit more 'idiomatic' Powershell
- Add script documentation (Get-Help .\.venv\Scripts\Activate.ps1 shows PS help page now
(cherry picked from commit
732775d6be8062e72cf4995d5a9db0170e22c233 )
Co-authored-by: Derek Keeler <d3r3kk@users.noreply.github.com>
Miss Islington (bot) [Mon, 12 Aug 2019 08:19:47 +0000 (01:19 -0700)]
Fix docs for assert_called and assert_called_once (GH-15219)
(cherry picked from commit
f9590edfeae192ba95aadaee9460dc03a366c51a )
Co-authored-by: Ismail S <ismail-s@users.noreply.github.com>
Miss Islington (bot) [Sun, 11 Aug 2019 22:02:23 +0000 (15:02 -0700)]
bpo-37819: Add Fraction.as_integer_ratio() (GH-15212) (GH-15215)
(cherry picked from commit
f03b4c8a48f62134799d368b78da35301af466a3 )
Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
Miss Islington (bot) [Sun, 11 Aug 2019 21:04:31 +0000 (14:04 -0700)]
bpo-32178: Fix IndexError trying to parse 'To' header starting with ':'. (GH-15044)
This should fix the IndexError trying to retrieve `DisplayName.display_name` and `DisplayName.value` when the `value` is basically an empty string.
https://bugs.python.org/issue32178
(cherry picked from commit
09a1872a8007048dcdf825a476816c5e3498b8f8 )
Co-authored-by: Abhilash Raj <maxking@users.noreply.github.com>
Miss Islington (bot) [Sat, 10 Aug 2019 07:37:35 +0000 (00:37 -0700)]
Delete leftover clinic-generated file for C zipimport. (GH-15174)
(cherry picked from commit
51aac15f6d525595e200e3580409c4b8656e8a96 )
Co-authored-by: Greg Price <gnprice@gmail.com>
Serhiy Storchaka [Fri, 9 Aug 2019 22:34:22 +0000 (01:34 +0300)]
[3.8] bpo-32912: Revert SyntaxWarning on invalid escape sequences (GH-15142)
* bpo-32912: Revert warnings for invalid escape sequences.
DeprecationWarning will continue to be emitted for invalid escape sequences in string and bytes literals in 3.8 just as it did in 3.7.
SyntaxWarning may be emitted in the future. But per mailing list discussion, we don't yet know when because we haven't settled on how to do so in a non-disruptive manner.
Miss Islington (bot) [Fri, 9 Aug 2019 08:31:27 +0000 (01:31 -0700)]
bpo-34155: Dont parse domains containing @ (GH-13079)
Before:
>>> email.message_from_string('From: a@malicious.org@important.com', policy=email.policy.default)['from'].addresses
(Address(display_name='', username='a', domain='malicious.org'),)
>>> parseaddr('a@malicious.org@important.com')
('', 'a@malicious.org')
After:
>>> email.message_from_string('From: a@malicious.org@important.com', policy=email.policy.default)['from'].addresses
(Address(display_name='', username='', domain=''),)
>>> parseaddr('a@malicious.org@important.com')
('', 'a@')
https://bugs.python.org/issue34155
(cherry picked from commit
8cb65d1381b027f0b09ee36bfed7f35bb4dec9a9 )
Co-authored-by: jpic <jpic@users.noreply.github.com>
Pablo Galindo [Fri, 9 Aug 2019 00:22:59 +0000 (01:22 +0100)]
[3.8] bpo-37795: Capture DeprecationWarnings in the test suite (GH-15184) (GH-15188)
(cherry picked from commit
aa542c2 )
Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
Miss Islington (bot) [Thu, 8 Aug 2019 08:36:55 +0000 (01:36 -0700)]
bpo-35892: Add usage note to mode() (GH-15122) (GH-15176)
(cherry picked from commit
e43e7ed36480190083740fd75e2b9cdca72f1a68 )
Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
Miss Islington (bot) [Wed, 7 Aug 2019 18:59:09 +0000 (11:59 -0700)]
bpo-37734: Remove unnecessary brace escapes in PC/layout script (GH-15165)
(cherry picked from commit
0378d98678f3617fd44d9a6266e7c17ebce62755 )
Co-authored-by: Steve Dower <steve.dower@python.org>
Miss Islington (bot) [Wed, 7 Aug 2019 18:15:15 +0000 (11:15 -0700)]
bpo-37778: Fixes the icons used for file associations to the Microsoft Store package (GH-15150)
(cherry picked from commit
87ce9588ceb4b4dd625913344844390f0b991b0c )
Co-authored-by: Steve Dower <steve.dower@python.org>
Miss Islington (bot) [Wed, 7 Aug 2019 18:07:43 +0000 (11:07 -0700)]
bpo-37734: Fix use of registry values to launch Python from Microsoft Store app (GH-15146)
(cherry picked from commit
1fab9cbfbaf19a7bc79cef382136fcf9491e3183 )
Co-authored-by: Steve Dower <steve.dower@python.org>
Miss Islington (bot) [Wed, 7 Aug 2019 15:39:14 +0000 (08:39 -0700)]
bpo-37004: Documented asymmetry of string arguments in difflib.SequenceMatcher for ratio method (GH-13482) (#15157)
https://bugs.python.org/issue37004
(cherry picked from commit
e9cbcd0018abd2a5f2348c45d5c9c4265c4f42dc )
Co-authored-by: sweeneyde <36520290+sweeneyde@users.noreply.github.com>
Miss Islington (bot) [Wed, 7 Aug 2019 01:38:22 +0000 (18:38 -0700)]
Make importlib.metadata a simple module (GH-15153) (GH-15154)
(cherry picked from commit
3a5c433fce7312748859290b9d8db5b6507660f9 )
Co-authored-by: Barry Warsaw <barry@python.org>
Miss Islington (bot) [Wed, 7 Aug 2019 01:07:59 +0000 (18:07 -0700)]
bpo-37646: Document that eval() cannot access nested scopes (GH-15117) (GH-15155)
(cherry picked from commit
610a4823cc0a3c2380ad0dfe64ae483ced4e5304 )
Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
Miss Islington (bot) [Tue, 6 Aug 2019 21:53:27 +0000 (14:53 -0700)]
Improve signal documentation (GH-14274)
* add a missing ``.. availability::`` reST explicit markup;
* more consistent "see man page" sentences.
(cherry picked from commit
cfebfef2def48095aa1f4c790a35e51818d67502 )
Co-authored-by: Géry Ogam <gery.ogam@gmail.com>
Miss Islington (bot) [Mon, 5 Aug 2019 22:22:13 +0000 (15:22 -0700)]
bpo-37759: First round of major edits to Whatsnew 3.8 (GH-15127) (GH-15139)
(cherry picked from commit
4f9ffc9d1a6a293563deaaaaf4a13331302219b4 )
Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
Miss Islington (bot) [Mon, 5 Aug 2019 07:20:25 +0000 (00:20 -0700)]
bpo-37729: gc: write stats at once (GH-15050)
gc used several PySys_WriteStderr() calls to write stats.
It caused stats mixed up when stderr is shared by multiple
processes like this:
gc: collecting generation 2...
gc: objects in each generation: 0 0gc: collecting generation 2...
gc: objects in each generation: 0 0 126077 126077
gc: objects in permanent generation: 0
gc: objects in permanent generation: 0
gc: done, 112575 unreachable, 0 uncollectablegc: done, 112575 unreachable, 0 uncollectable, 0.2223s elapsed
, 0.2344s elapsed
(cherry picked from commit
bf8162c8c45338470bbe487c8769bba20bde66c2 )
Co-authored-by: Inada Naoki <songofacandy@gmail.com>
Miss Islington (bot) [Mon, 5 Aug 2019 00:08:16 +0000 (17:08 -0700)]
bpo-36419: IDLE - Refactor autocompete and improve testing. (GH-15121)
(cherry picked from commit
1213123005d9f94bb5027c0a5256ea4d3e97b61d )
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Miss Islington (bot) [Sun, 4 Aug 2019 21:04:49 +0000 (14:04 -0700)]
bpo-37748: Re-order the Run menu. (GH-15115)
Put the most common choice, Run Module, at the top.
(cherry picked from commit
14070299cdc0faf36975f0cc2d51824a9abf3db0 )
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Miss Islington (bot) [Sun, 4 Aug 2019 20:52:59 +0000 (13:52 -0700)]
Update itertools docs (GH-15114) (GH-15118)
* Remove suggestion that is less relevant now that global lookups are much faster
* Add link for installing the recipes
(cherry picked from commit
adf02b36b3f3745ad4ee380d88f2f6011f54fc22 )
Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
Miss Islington (bot) [Sun, 4 Aug 2019 20:34:56 +0000 (13:34 -0700)]
bpo-28292: Mark calendar.py helper functions as private. (GH-15113) (GH-15116)
(cherry picked from commit
b1c8ec010fb4eb2654ca994e95144c8f2fea07fb )
Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
Miss Islington (bot) [Sun, 4 Aug 2019 19:16:19 +0000 (12:16 -0700)]
bpo-36324: Update comments to include the target hash sums (GH-15110) (GH-15112)
(cherry picked from commit
8183bb8150edcac6a7525bfb7708d08837ecb095 )
Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
Miss Islington (bot) [Sun, 4 Aug 2019 16:43:56 +0000 (09:43 -0700)]
bpo-37706: IDLE - fix sidebar code bug and drag tests (GH-15103)
Convert mouse y to line number in the sidebar rather than the text.
(cherry picked from commit
86f1a18abfee5939452f468d80de998918e2afd2 )
Co-authored-by: Tal Einat <taleinat+github@gmail.com>
Miss Islington (bot) [Sun, 4 Aug 2019 13:43:30 +0000 (06:43 -0700)]
bpo-37730: Fix usage of NotImplemented instead of NotImplementedError in docs. (GH-15062)
(cherry picked from commit
ed5e8e06cbf766e89d6c58a882ee024abb5b2ed7 )
Co-authored-by: David H <dheiberg@mozilla.com>
Miss Islington (bot) [Sun, 4 Aug 2019 10:01:55 +0000 (03:01 -0700)]
bpo-37685: Fixed comparisons of datetime.timedelta and datetime.timezone. (GH-14996)
There was a discrepancy between the Python and C implementations.
Add singletons ALWAYS_EQ, LARGEST and SMALLEST in test.support
to test mixed type comparison.
(cherry picked from commit
17e52649c0e7e9389f1cc2444a53f059e24e6bca )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Miss Islington (bot) [Sat, 3 Aug 2019 18:39:46 +0000 (11:39 -0700)]
Correct description of HTTP status code 308. (GH-15098)
Permanent redirect was explained as a temporary redirect.
(cherry picked from commit
5c72badd06a962fe0018ceb9916f3ae66314ea8e )
Co-authored-by: Florian Wendelborn <1133858+FlorianWendelborn@users.noreply.github.com>
Miss Islington (bot) [Fri, 2 Aug 2019 23:04:53 +0000 (16:04 -0700)]
bpo-30974: Change os.path.samefile docstring to match docs (GH-7337)
(cherry picked from commit
8e568ef266a2805f9a6042003723d9c050830461 )
Co-authored-by: Timo Furrer <tuxtimo@gmail.com>
Miss Islington (bot) [Fri, 2 Aug 2019 22:42:50 +0000 (15:42 -0700)]
bpo-20523: pdb searches for .pdbrc in ~ instead of $HOME (GH-11847)
Previously pdb checked the $HOME environmental variable
to find the user .pdbrc. If $HOME is not set, the user
.pdbrc would not be found.
Change pdb to use `os.path.expanduser('~')` to determine
the user's home directory. Thus, if $HOME is not set (as
in tox or on Windows), os.path.expanduser('~') falls
back on other techniques for locating the user's home
directory.
This follows pip's implementation for loading .piprc.
Co-authored-by: Dan Lidral-Porter <dlp@aperiodic.org>
(cherry picked from commit
7ea9a85f132b32347fcbd2cbe1b553a2e9890b56 )
Co-authored-by: Timothy Hopper <tdhopper@users.noreply.github.com>
Miss Islington (bot) [Fri, 2 Aug 2019 17:49:38 +0000 (10:49 -0700)]
bpo-36487: Make C-API docs clear about what the main interpreter is. (gh-15080)
(cherry picked from commit
854d0a4b98b13629252e21edaf2b785b429e5135 ) (gh-12666)
Co-authored-by: Joannah Nanjekye <33177550+nanjekyejoannah@users.noreply.github.com>
Miss Islington (bot) [Fri, 2 Aug 2019 05:16:44 +0000 (22:16 -0700)]
bpo-16970: Adding error message for invalid args (GH-14844)
BPO -16970: Adding error message for invalid args
Applied the patch argparse-v2 patch issue 16970, ran patch check and the test suite, test_argparse with 0 errors
https://bugs.python.org/issue16970
(cherry picked from commit
4b3e97592376d5f8a3b75192b399a2da1be642cb )
Co-authored-by: tmblweed <tmblweed@users.noreply.github.com>
Miss Islington (bot) [Thu, 1 Aug 2019 14:38:57 +0000 (07:38 -0700)]
bpo-18049: Sync thread stack size to main thread size on macOS (GH-14748)
This changeset increases the default size of the stack
for threads on macOS to the size of the stack
of the main thread and reenables the relevant
recursion test.
(cherry picked from commit
1a057bab0f18d6ad843ce321d1d77a4819497ae4 )
Co-authored-by: Ronald Oussoren <ronaldoussoren@mac.com>
Miss Islington (bot) [Thu, 1 Aug 2019 14:34:57 +0000 (07:34 -0700)]
bpo-37726: Prefer argparse over getopt in stdlib tutorial (GH-15052) (#15070)
(cherry picked from commit
2491134029b195d3159a489e1803ee22a7839b41 )
Co-authored-by: mental <m3nta1@yahoo.com>
Miss Islington (bot) [Wed, 31 Jul 2019 20:44:59 +0000 (13:44 -0700)]
bpo-37695: Correct unget_wch error message. (GH-14986)
(cherry picked from commit
c9345e382c630ddcc2b148b30954640e0e435c8a )
Co-authored-by: Anthony Sottile <asottile@umich.edu>
Miss Islington (bot) [Wed, 31 Jul 2019 20:22:09 +0000 (13:22 -0700)]
bpo-37723: Fix performance regression on regular expression parsing. (GH-15030)
Improve performance of sre_parse._uniq function.
(cherry picked from commit
9f55551f3df238e58315e724e50cb0d574d75b94 )
Co-authored-by: yannvgn <hi@yannvgn.io>
Miss Islington (bot) [Wed, 31 Jul 2019 15:04:31 +0000 (08:04 -0700)]
bpo-34101: Add doc of PyBuffer_GetPointer (GH-14994)
(cherry picked from commit
1b29af83bc17e773b0c0d117f5fe1018fde46b0d )
Co-authored-by: Hai Shi <shihai1992@gmail.com>
Miss Islington (bot) [Wed, 31 Jul 2019 09:10:38 +0000 (02:10 -0700)]
bpo-37085: Expose SocketCAN bcm_msg_head flags (GH-13646)
Expose the CAN_BCM SocketCAN constants used in the bcm_msg_head struct
flags (provided by <linux/can/bcm.h>) under the socket library.
This adds the following constants with a CAN_BCM prefix:
* SETTIMER
* STARTTIMER
* TX_COUNTEVT
* TX_ANNOUNCE
* TX_CP_CAN_ID
* RX_FILTER_ID
* RX_CHECK_DLC
* RX_NO_AUTOTIMER
* RX_ANNOUNCE_RESUME
* TX_RESET_MULTI_IDX
* RX_RTR_FRAME
* CAN_FD_FRAME
The CAN_FD_FRAME flag was introduced in the 4.8 kernel, while the other
ones were present since SocketCAN drivers were mainlined in 2.6.25. As
such, it is probably unnecessary to guard against these constants being
missing.
(cherry picked from commit
31c4fd2a10d90beaa37d630e5f74a471e14e089d )
Co-authored-by: karl ding <karlding@users.noreply.github.com>
Miss Islington (bot) [Wed, 31 Jul 2019 06:58:46 +0000 (23:58 -0700)]
Refined Qt GUI example in the logging cookbook. (GH-15045) (GH-15046)
(cherry picked from commit
472eced6770c2fabab3031e4e16cd32e32b8a0cc )
Miss Islington (bot) [Wed, 31 Jul 2019 05:42:17 +0000 (22:42 -0700)]
IDLE: changelog correction and addition (GH-15042)
(cherry picked from commit
d04f8907baaa6620be7347ba14dd84bc4ef33814 )
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Miss Islington (bot) [Wed, 31 Jul 2019 05:23:05 +0000 (22:23 -0700)]
bpo-33821: Update IDLE section of What's New 3.7 (GH-15036)
* bpo-33821: Update IDLE section of What's New 3.7
* Fix roles.
(cherry picked from commit
5982b7201b84bfd24a1c2b2836401afee1cad8a7 )
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Miss Islington (bot) [Wed, 31 Jul 2019 05:19:28 +0000 (22:19 -0700)]
bpo-34162: Add missing items to idlelib/NEWS.txt. (GH-15034)
(cherry picked from commit
fff5cb21ae270d8572741e18030765580c7ae361 )
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Miss Islington (bot) [Wed, 31 Jul 2019 05:16:45 +0000 (22:16 -0700)]
bpo-33822: Add IDLE section of What's New 3.8 (GH-15035)
* bpo-33822: Add IDLE section of What's New 3.8
* Fix role.
(cherry picked from commit
a72ca90eb9f13ee2abc7e19b669974d2d0b3d63e )
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Miss Islington (bot) [Tue, 30 Jul 2019 22:34:20 +0000 (15:34 -0700)]
Fix idlelib typos discovered by min ho, pr 15018. (GH-15029)
(cherry picked from commit
0acb646b8e405864224bfd6d7d5089980dea63ac )
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Miss Islington (bot) [Tue, 30 Jul 2019 21:49:23 +0000 (14:49 -0700)]
bpo-36084: Add threading Native ID information to What's New documentation (GH-14845)
(cherry picked from commit
84846b0187919551b1b08dca447658bbbbb710b1 )
Co-authored-by: Jake Tesler <jake.tesler@gmail.com>