Staging
v0.5.1
https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
6f7346b [3.9] bpo-40826: Fix GIL usage in PyOS_Readline() (GH-20613) (GH-20616) * bpo-40826: Fix GIL usage in PyOS_Readline() (GH-20579) Fix GIL usage in PyOS_Readline(): lock the GIL to set an exception. Pass tstate to my_fgets() and _PyOS_WindowsConsoleReadline(). Cleanup these functions. (cherry picked from commit c353764fd564e401cf47a5d9efab18c72c60014e) * bpo-40826: Add _PyOS_InterruptOccurred(tstate) function (GH-20599) my_fgets() now calls _PyOS_InterruptOccurred(tstate) to check for pending signals, rather calling PyOS_InterruptOccurred(). my_fgets() is called with the GIL released, whereas PyOS_InterruptOccurred() must be called with the GIL held. test_repl: use text=True and avoid SuppressCrashReport in test_multiline_string_parsing(). Fix my_fgets() on Windows: fgets(fp) does crash if fileno(fp) is closed. (cherry picked from commit fa7ab6aa0f9a4f695e5525db5a113cd21fa93787) 03 June 2020, 16:28:18 UTC
5b8787e bpo-40767: Allow pure Wayland to get default XDG web browser (GH-20382) Would be nice to backport to python 3.7+. I don't think it's worth the hassle to backport this all the way down to 3.10. But I'll let the maintainers decide. This is hard to test because the test setup already includes this [environment variable](https://github.com/python/cpython/blob/master/Lib/test/pythoninfo.pyGH-L292) Let me know if something doesn't match the PR guidelines. This is my first PR in the python source code. (cherry picked from commit c822efeda9a0afe87cf3429724732fc8e19a01fb) Co-authored-by: Jeremy Attali <jeremy.attali@gmail.com> 03 June 2020, 13:02:33 UTC
139f1ba Ensure correct version of Sphinx is used for Windows builds (GH-20582) (cherry picked from commit fe5dd78182dbf4937bcc2b113ca7526bfad0192b) Co-authored-by: Steve Dower <steve.dower@python.org> 01 June 2020, 21:25:32 UTC
d0dc369 bpo-40831: Remove an incorrect statement in the Windows docs (GH-20570) (cherry picked from commit c8966667bbdb284c3780ef6cec8a3870935a6bb7) Co-authored-by: Zackery Spytz <zspytz@gmail.com> 01 June 2020, 15:53:33 UTC
9c0ff17 bpo-30008: Fix OpenSSL no-deprecated compilation (GH-20397) Fix :mod:`ssl`` code to be compatible with OpenSSL 1.1.x builds that use ``no-deprecated`` and ``--api=1.1.0``. Note: Tests assume full OpenSSL API and fail with limited API. Signed-off-by: Christian Heimes <christian@python.org> Co-authored-by: Mark Wright <gienah@gentoo.org> (cherry picked from commit a871f692b4a2e6c7d45579693e787edc0af1a02c) Co-authored-by: Christian Heimes <christian@python.org> 01 June 2020, 07:17:16 UTC
ba1c2c8 bpo-40798: Generate a different message for already removed elements (GH-20483) (cherry picked from commit 735d902b363b759df9ff00e58bbf4f7e2bde78cd) Co-authored-by: Florian Dahlitz <f2dahlitz@freenet.de> 30 May 2020, 07:54:58 UTC
ef2f9ac closes bpo-29017: Update the bindings for Qt information with PySide2 (GH-20149) Reference to PySide has been removed has it is for Qt 4, which has reached end of life. (cherry picked from commit 4649202ea75d48e1496e99911709824ca2d3170e) Co-authored-by: Samuel Gaist <samuel.gaist@idiap.ch> 30 May 2020, 02:04:24 UTC
3dcccd1 bpo-39885: Make IDLE context menu cut and copy work again (GH-18951) Leave selection when right click within. This exception to clearing selections when right-clicking was omitted from the previous commit, 4ca060d. I did not realize that this completely disabled the context menu entries, and I should have merged a minimal fix immediately. An automated test should follow. (cherry picked from commit 97e4e0f53d6690db6b942678489716a30925b8af) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> 29 May 2020, 23:13:00 UTC
00a240b bpo-40784: Fix sqlite3 deterministic test (GH-20448) (cherry picked from commit c610d970f5373b143bf5f5900d4645e6a90fb460) Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no> 29 May 2020, 12:46:34 UTC
b86636b [3.8] bpo-25872: Fix KeyError in linecache when multithreaded (GH-18007) (GH-20092) Backporting to 3.8 and adding a NEWS item (I should have added one to the master branch -- oh well). 29 May 2020, 11:59:44 UTC
6381ee0 bpo-39040: Fix parsing of email mime headers with whitespace between encoded-words. (gh-17620) * bpo-39040: Fix parsing of email headers with encoded-words inside a quoted string. It is fairly common to find malformed mime headers (especially content-disposition headers) where the parameter values, instead of being encoded to RFC standards, are "encoded" by doing RFC 2047 "encoded word" encoding, and then enclosing the whole thing in quotes. The processing of these malformed headers was incorrectly leaving the spaces between encoded words in the decoded text (whitespace between adjacent encoded words is supposed to be stripped on decoding). This changeset fixes the encoded word processing inside quoted strings (bare-quoted-string) to do correct RFC 2047 decoding by stripping that whitespace. (cherry picked from commit 21017ed904f734be9f195ae1274eb81426a9e776) Co-authored-by: Abhilash Raj <maxking@users.noreply.github.com> 29 May 2020, 11:43:27 UTC
f89d7bc Note the output ordering of combinatoric functions (GH-19732) (GH-20502) 28 May 2020, 20:33:57 UTC
c0c5db5 Improve IO tutorial's "Old string formatting" section (GH-16251) * Use a more universal explanation of string interpolation rather than specifically referencing sprintf(), which depends on the reader having a C background. Co-authored-by: Kyle Stanley <aeros167@gmail.com> (cherry picked from commit eaca2aa117d663acf8160a0b4543ee2c7006fcc7) Co-authored-by: Adorilson Bezerra <adorilson@gmail.com> 28 May 2020, 01:41:31 UTC
45ce0db bpo-40795: ctypes calls unraisablehook with an exception (GH-20452) If ctypes fails to convert the result of a callback or if a ctypes callback function raises an exception, sys.unraisablehook is now called with an exception set. Previously, the error was logged into stderr by PyErr_Print(). (cherry picked from commit 10228bad0452d94e66c964b625a0b61befa08e59) Co-authored-by: Victor Stinner <vstinner@python.org> 27 May 2020, 22:56:36 UTC
b5ecbf0 bpo-40025: Require _generate_next_value_ to be defined before members(GH-19763) require `_generate_next_value_` to be defined before members 27 May 2020, 20:12:08 UTC
a285af7 bpo-13097: ctypes: limit callback to 1024 arguments (GH-19914) ctypes now raises an ArgumentError when a callback is invoked with more than 1024 arguments. The ctypes module allocates arguments on the stack in ctypes_callproc() using alloca(), which is problematic when large numbers of arguments are passed. Instead of a stack overflow, this commit raises an ArgumentError if more than 1024 parameters are passed. (cherry picked from commit 29a1384c040d39659e7d01f1fd7b6eb71ef2634e) Co-authored-by: Sean Gillespie <sean@swgillespie.me> 27 May 2020, 15:53:03 UTC
75635c6 bpo-39073: validate Address parts to disallow CRLF (GH-19007) Disallow CR or LF in email.headerregistry.Address arguments to guard against header injection attacks. (cherry picked from commit 614f17211c5fc0e5b828be1d3320661d1038fe8f) Co-authored-by: Ashwin Ramaswami <aramaswamis@gmail.com> 27 May 2020, 13:37:40 UTC
5594c07 Clean up compatibility code in importlib fixtures (GH-19156) (#19543) (cherry picked from commit 574547a75c79b506261520c5773ae08a1dcea1b9) Co-authored-by: Jason R. Coombs <jaraco@jaraco.com> Co-authored-by: Jason R. Coombs <jaraco@jaraco.com> 27 May 2020, 13:05:03 UTC
7c82528 Fix the link to ncurses patch download in macos installer build script (GH-20421) Reason: the link `ftp://invisible-island.net/ncurses//5.9/ncurses-5.9-20120616-patch.sh.bz2` is dead, which prevents `Mac/BuildScript/build-installer.py` from completing. Looks like the host of the FTP server was changed to `ftp.invisible-island.net`, thus this proposal. Signed-off-by: oleg.hoefling <oleg.hoefling@gmail.com> (cherry picked from commit 7da46b676aed7111de34b57c8b942a7f3bb80327) Co-authored-by: Oleg Höfling <hoefling@users.noreply.github.com> 27 May 2020, 10:28:45 UTC
285ff63 bpo-39244: multiprocessing return default start method first on macOS (GH-18625) (cherry picked from commit db098bc1f05bd0773943e59f83489f05f28dedf8) Co-authored-by: idomic <michael.ido@gmail.com> 26 May 2020, 15:13:59 UTC
e3e800f [3.8] bpo-38580: Document that select() accepts iterables, not just sequences (GH-16832) (cherry picked from commit 372ee27d4958302dac7ad6a8711f6fd04771b2e6) Co-authored-by: Jakub Stasiak <jakub@stasiak.at> 26 May 2020, 12:59:32 UTC
5ff5edf [3.8] bpo-35714: Reject null characters in struct format strings (GH-16928) (GH-20419) struct.error is now raised if there is a null character in a struct format string. (cherry picked from commit 3f59b55316f4c6ab451997902579aa69020b537c) 26 May 2020, 08:57:09 UTC
c2a177a bpo-39301: State that floor division is used for right shift operations (GH-20347) (GH-20415) * bpo-39301: State that floor division is used for right shift operations * Remove "without overflow check" (cherry picked from commit af7553ac95a96713be847dd45bc5a8aeb0a75955) Co-authored-by: Zackery Spytz <zspytz@gmail.com> 26 May 2020, 08:33:42 UTC
5c1d745 bpo-39830: Add zipfile.Path to __all__ (GH-19115) (GH-19116) (cherry picked from commit 9a81ab107a54b8ca320fb703f7c68e14ccd9d016) Co-authored-by: Zackery Spytz <zspytz@gmail.com> Co-authored-by: Zackery Spytz <zspytz@gmail.com> 26 May 2020, 06:44:57 UTC
b38bd88 bpo-40745: Fix typos in NewType docs (GH-20379) (cherry picked from commit 2b0e654f91f28379c6c7ef5fd80e8754afb70935) Co-authored-by: ziheng <zihenglv@gmail.com> 26 May 2020, 04:52:55 UTC
1f2cc7c closes bpo-40774: Fix docs indentation for asyncio.create_subprocess_shell() (GH-20403) (cherry picked from commit 4a0ac42c52a4d9ccfb0a78ab02aa03172ce0e31a) Co-authored-by: sth <sth.dev@tejp.de> 26 May 2020, 04:15:52 UTC
331b2df bpo-38972: Fix typos in PowerShell Execution Policies links (GH-20383) (cherry picked from commit ef16958d17e83723334a51428f410f726d6492a7) Co-authored-by: Miro Hrončok <miro@hroncok.cz> 25 May 2020, 15:11:39 UTC
907ee1f bpo-36290: Fix keytword collision handling in AST node constructors (GH-12382) (cherry picked from commit c73914a562580ae72048876cb42ed8e76e2c83f9) Co-authored-by: Rémi Lapeyre <remi.lapeyre@lenstra.fr> 24 May 2020, 21:31:47 UTC
1ae0fd8 [3.8] bpo-37309: Update IDLE NEWS.txt for 3.8.4 (GH-20355) 24 May 2020, 13:57:29 UTC
a64df48 bpo-40723: Make IDLE autocomplete test run without __main__.__file__ (GH-20311) This was the only failure running unittest.main(test.test_idle) after imports. (cherry picked from commit 905b3cd05f8d2c29e1605d109900e3e9d07af4d3) Co-authored-by: Florian Dahlitz <f2dahlitz@freenet.de> 24 May 2020, 11:08:04 UTC
2fecb48 bpo-40405: Fix asyncio.as_completed docs (GH-19753) * Fix as_completed docs to correctly state the function return value. * Also, improves the general wording of the as_completed documentation. Co-Authored-By: Rémi Lapeyre <remi.lapeyre@henki.fr> Co-Authored-By: Kyle Stanley <aeros167@gmail.com> Co-Authored-By: Yury Selivanov <yury@edgedb.com> (cherry picked from commit 13206b52d16c2489f4c7dd2dce2a7f48a554b5ed) Co-authored-by: Bar Harel <bzvi7919@gmail.com> 23 May 2020, 23:24:03 UTC
dc32391 bpo-40439: Update broken link in lexical analysis docs (GH-20184) Automerge-Triggered-By: @csabella (cherry picked from commit af23f0d3cf19343512e6ca1fe1d46a5dbe425719) Co-authored-by: Matteo Bertucci <matteobertucci2004@gmail.com> 23 May 2020, 01:20:01 UTC
a4d219b [3.8] bpo-40663: Correctly handle annotations with subscripts in ast_unparse.c (GH-20156). (GH-20191) (cherry picked from commit 2135e10dc717c00d10d899d232bebfc59bb25032) Co-authored-by: Batuhan Taskaya <batuhanosmantaskaya@gmail.com> 22 May 2020, 22:32:40 UTC
0cc7bec bpo-40214: Fix ctypes WinDLL test with insecure flags (GH-19652) (cherry picked from commit 9b498939009f49b8c772c89e8fc80efbfd8afcb5) Co-authored-by: Steve Dower <steve.dower@python.org> 22 May 2020, 22:24:45 UTC
16d0781 bpo-40327: Improve atomicity, speed, and memory efficiency of the items() loop (GH-19628) (cherry picked from commit 75bedbe2ed4119ff18a2ea86c544b3cf08a92e75) Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com> 22 May 2020, 22:22:51 UTC
0714c48 Reword aware/naive introduction sentence (GH-20175) This is more informative and avoids the question of whether the period should go inside or outside the quotation marks. See also GH-20007. (cherry picked from commit 2e76820a50b8ce2a9a5f6cdef6cef1859a89c460) Co-authored-by: Mathieu Dupuy <mathieu.dupuy@doctolib.com> 22 May 2020, 21:43:51 UTC
822efa5 [doc] Remove references to obsolete BuildApplet on macOS. (GH-20023) (cherry picked from commit 7864f11cdf12807555d62c7a132c191eb41ecc02) Co-authored-by: Andre Delfino <adelfino@gmail.com> 21 May 2020, 23:34:46 UTC
d88f0aa bpo-40651: Improve LRU recipe in the OrderedDict documentation (GH-GH-20139) (GH-20167) 21 May 2020, 04:21:02 UTC
a59fc91 s/wakup/wakeup (GH-20250) (as title) Automerge-Triggered-By: @Mariatta (cherry picked from commit f2947e354c95d246b1836ac78d4c820c420e259b) Co-authored-by: Kunal Bhalla <bhalla.kunal@gmail.com> 20 May 2020, 17:58:55 UTC
9ef49e1 Use v2 of GitHub Actions where available (GH-20232) Automerge-Triggered-By: @Mariatta (cherry picked from commit 7fbe65dbc42985d002d9538fe9a9887e6e6af66c) Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com> 20 May 2020, 16:59:40 UTC
381ceea bpo-39631: Adds NEWS entry (GH-20227) (cherry picked from commit 92327a9913150f5bb55b2727a2c5d50f9b7b6e55) Co-authored-by: Steve Dower <steve.dower@python.org> 19 May 2020, 22:19:26 UTC
46fc3ec bpo-39631: Fix file association MIME type in the Windows installer (GH-20205) Use text/x-python instead of text/plain to avoid issues with tools assuming that "ShellExecute(script)" is a non-executable operation. (cherry picked from commit 8c862e51248c5ebfec787badec88eb58c9267e1e) Co-authored-by: Zackery Spytz <zspytz@gmail.com> 19 May 2020, 12:42:52 UTC
560d643 bpo-40677: Define IO_REPARSE_TAG_APPEXECLINK explicitly (GH-20206) This allows building with older versions of the Windows SDK where the value is not defined. (cherry picked from commit 711f9e180a48baba62301735b7f1a58ef0d0e93a) Co-authored-by: Minmin Gong <gongminmin@msn.com> 19 May 2020, 12:39:06 UTC
b5279c1 Doc: Python 3.10 in sidebar and version switcher. (GH-20209) (cherry picked from commit 19e3e0026417caa92ffe21a67157363b45da9aa2) Co-authored-by: Julien Palard <julien@palard.fr> 19 May 2020, 12:34:01 UTC
257e11c bpo-39976: Add **other_popen_kwargs to subprocess docs (GH-20145) (cherry picked from commit 46545000c2a30b46aed717b546bc09e5bae7148f) Co-authored-by: Zackery Spytz <zspytz@gmail.com> 19 May 2020, 09:27:49 UTC
460eac2 bpo-35890: Use RegQueryInfoKeyW and CryptAcquireContextW explicitly (GH-19974) (cherry picked from commit 98e42d1f882b9b59f587d538c562dbc7d11c64c3) Co-authored-by: Minmin Gong <gongminmin@msn.com> 18 May 2020, 17:09:59 UTC
ab9d953 bpo-40650: Include winsock2.h in pytime.c, instead of a full windows.h (GH-20137) (cherry picked from commit f660567937277cc3a2cd53af77bbb18e905427e8) Co-authored-by: Minmin Gong <gongminmin@msn.com> 18 May 2020, 16:42:14 UTC
ddd5bbd bpo-40653: Move _dirnameW out of GH-ifdef HAVE_SYMLINK/GH-endif (GH-20144) (cherry picked from commit 7f21c9ac872acc2114aee3313d132b016550ff42) Co-authored-by: Minmin Gong <gongminmin@msn.com> 18 May 2020, 16:36:02 UTC
d8cbfa2 bpo-40548: Github Actions: update actions/checkout to v2 (GH-20164) Signed-off-by: Filipe Laíns <lains@archlinux.org> (cherry picked from commit c444108dd62672f2b41539bcc8f15da44501f405) Co-authored-by: Filipe Laíns <lains@archlinux.org> 18 May 2020, 14:07:49 UTC
94d9c5e bpo-39148: enable ipv6 for datagrams in Proactor (GH-19121) Ifdef is not necessary, as AF_INET6 is supported from Windows Vista, and other code in overlapped.c uses AF_INET6 and is not ifdef'd. Change the raised exception so users are not fooled to think it comes from Windows API. Automerge-Triggered-By: @njsmith (cherry picked from commit 442634c42fcaf31c636f693951a97734042c3e7b) Co-authored-by: Kjell Braden <afflux@pentabarf.de> 18 May 2020, 06:42:25 UTC
c1f1ddf bpo-40597: email: Use CTE if lines are longer than max_line_length consistently (gh-20038) (gh-20084) raw_data_manager (default for EmailPolicy, EmailMessage) does correct wrapping of 'text' parts as long as the message contains characters outside of 7bit US-ASCII set: base64 or qp Content-Transfer-Encoding is applied if the lines would be too long without it. It did not, however, do this for ascii-only text, which could result in lines that were longer than policy.max_line_length or even the rfc 998 maximum. This changeset fixes the heuristic so that if lines are longer than policy.max_line_length, it will always apply a content-transfer-encoding so that the lines are wrapped correctly. (cherry picked from commit 6f2f475d5a2cd7675dce844f3af436ba919ef92b) Co-authored-by: Arkadiusz Hiler <arek.l1@gmail.com> 18 May 2020, 00:57:42 UTC
7a3522d Doc: change 'Posix' for 'POSIX' (GH-20001) (cherry picked from commit 65460565df99fbda6a74b6bb4bf99affaaf8bd95) Co-authored-by: Mathieu Dupuy <mathieu.dupuy@doctolib.com> 17 May 2020, 21:37:30 UTC
b1e23f3 Doc: move a dot outside double quotes (GH-20007) (cherry picked from commit 4eba67783eb2084b2dad875ed1cbffdaf8a9202e) Co-authored-by: Mathieu Dupuy <mathieu.dupuy@doctolib.com> 17 May 2020, 21:32:43 UTC
a669443 bpo-40457: Support OpenSSL without TLS 1.0/1.1 (GH-19862) OpenSSL can be build without support for TLS 1.0 and 1.1. The ssl module now correctly adheres to OPENSSL_NO_TLS1 and OPENSSL_NO_TLS1_1 flags. Also update multissltest to test with latest OpenSSL and LibreSSL releases. Signed-off-by: Christian Heimes <christian@python.org> Automerge-Triggered-By: @tiran (cherry picked from commit 6e8cda91d92da72800d891b2fc2073ecbc134d98) Co-authored-by: Christian Heimes <christian@python.org> 16 May 2020, 08:33:42 UTC
c3d025a bpo-40636: Clarify the zip built-in docstring. (GH-20118) Clarify the zip built-in docstring. This puts much simpler text up front along with an example. As it was, the zip built-in docstring was technically correct. But too technical for the reader who shouldn't _need_ to know about `__next__` and `StopIteration` as most people do not need to understand the internal implementation details of the iterator protocol in their daily life. This is a documentation only change, intended to be backported to 3.8; it is only tangentially related to PEP-618 which might offer new behavior options in the future. Wording based a bit more on enumerate per Brandt's suggestion. This gets rid of the legacy wording paragraph which seems too tied to implementation details of the iterator protocol which isn't relevant here. Co-authored-by: Brandt Bucher <brandtbucher@gmail.com> (cherry picked from commit 6a5d3ff67644af42b1a781be2eacb2e82913441c) Co-authored-by: Gregory P. Smith <greg@krypto.org> 15 May 2020, 21:43:27 UTC
fcea080 bpo-40163: Fix multissltest download of old OpenSSL (GH-19329) (cherry picked from commit 938717fd04c53c717895a756d5910e8c8813706c) Co-authored-by: Christian Heimes <christian@python.org> 15 May 2020, 20:55:45 UTC
387c744 [3.8] bpo-40515: Require OPENSSL_THREADS (GH-19953) (GH-20119) 15 May 2020, 20:36:51 UTC
5a06cf0 bpo-40479: Test with latest OpenSSL versions (GH-20108) * 1.0.2u (EOL) * 1.1.0l (EOL) * 1.1.1g * 3.0.0-alpha2 (disabled for now) Build the FIPS provider and create a FIPS configuration file for OpenSSL 3.0.0. Signed-off-by: Christian Heimes <christian@python.org> Automerge-Triggered-By: @tiran (cherry picked from commit 62d618c06bd395308b7163dbcb26c7e6d0922033) Co-authored-by: Christian Heimes <christian@python.org> 15 May 2020, 17:10:15 UTC
4e6545b bpo-40055: test_distutils leaves warnings filters unchanged (GH-20095) distutils.tests now saves/restores warnings filters to leave them unchanged. Importing tests imports docutils which imports pkg_resources which adds a warnings filter. (cherry picked from commit 6e57237faf0da8904e0130a11350cae3c5062b82) Co-authored-by: Victor Stinner <vstinner@python.org> 15 May 2020, 16:25:00 UTC
07bd5cf [3.8] bpo-40548: GitHub Action workflow: skip jobs on doc only PRs (GH-20100) * bpo-40548: Always run GitHub action, even on doc PRs (GH-19981) Always run GitHub action jobs, even on documentation-only pull requests. So it will be possible to make a GitHub action job, like the Windows (64-bit) job, mandatory. (cherry picked from commit 4e363761fc02a89d53aba4382dc451293bd6f0ba) * bpo-40548: GitHub Action workflow: skip jobs on doc only PRs (GH-19983) Signed-off-by: Filipe Laíns <lains@archlinux.org> (cherry picked from commit 75d7257b201a56f950c20cd9f5753a83fff4742b) * bpo-40548: github actions: pass the changes check on no source changes (GH-20097) Signed-off-by: Filipe Laíns <lains@archlinux.org> (cherry picked from commit 6a78589b6b22878491a4b042bb8b3161e1d120f6) Co-authored-by: Filipe Laíns <filipe.lains@gmail.com> Co-authored-by: Filipe Laíns <lains@archlinux.org> 15 May 2020, 03:27:48 UTC
eb5ce32 bpo-38872: Document exec symbol for codeop.compile_command (GH-20047) (GH-20098) * Document exec symbol for codeop.compile_command * Remove extra statements Co-authored-by: nanjekyejoannah <joannah.nanjekye@ibm.com> (cherry picked from commit 7ba1f75f3f02b4b50ac6d7e17d15e467afa36aac) Co-authored-by: Joannah Nanjekye <33177550+nanjekyejoannah@users.noreply.github.com> Co-authored-by: Joannah Nanjekye <33177550+nanjekyejoannah@users.noreply.github.com> 15 May 2020, 01:38:17 UTC
35b8a4d Post 3.8.3 13 May 2020, 21:42:31 UTC
6f8c832 Python 3.8.3 13 May 2020, 17:31:54 UTC
a63c611 bpo-40561: Add docstrings for webbrowser open functions (GH-19999) Co-authored-by: Brad Solomon <brsolomon@deloitte.com> Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> (cherry picked from commit ef7973a981ff8f4687ef3fdb85a69fa15aa11fe5) Co-authored-by: Brad Solomon <brad.solomon.1124@gmail.com> 11 May 2020, 19:09:10 UTC
546f643 Make the first dataclass example more useful (GH-19994) (GH-19997) (cherry picked from commit 2effef7453986bf43a6d921cd471a8bc0722c36a) Co-authored-by: Ned Batchelder <ned@nedbatchelder.com> Co-authored-by: Ned Batchelder <ned@nedbatchelder.com> 08 May 2020, 11:52:10 UTC
0e4a5e9 [3.8] bpo-40559: Add Py_DECREF to _asynciomodule.c:task_step_impl() (GH-19990) This fixes a possible memory leak in the C implementation of asyncio.Task. (cherry picked from commit d2c349b190bcba21a4a38e6520a48ad97a9f1529) Co-authored-by: Chris Jerdonek <chris.jerdonek@gmail.com> 08 May 2020, 11:28:38 UTC
bce4dda bpo-40527: Fix command line argument parsing (GH-19955) (cherry picked from commit 2668a9a5aa506a048aef7b4881c8dcf6b81c6870) Co-authored-by: Victor Stinner <vstinner@python.org> 06 May 2020, 13:43:09 UTC
a32587a [3.8] bpo-40417: Fix deprecation warning in PyImport_ReloadModule (GH-19750) (GH-19934) Automerge-Triggered-By: @brettcannon. (cherry picked from commit f40bd466bf14029e2687e36e965875adf9d4be1a) Co-authored-by: Robert Rouhani <robert.rouhani@gmail.com> 06 May 2020, 00:32:14 UTC
2a3b876 bpo-40355: Improve error messages in ast.literal_eval with malformed Dict nodes (GH-19868) Co-authored-by: Pablo Galindo <Pablogsal@gmail.com> (cherry picked from commit c21c51235aa8061da6b0593d6f857f42fd92fd8b) Co-authored-by: Curtis Bucher <cpbucher5@gmail.com> 05 May 2020, 20:00:57 UTC
a6a116c bpo-40458: Increase reserved stack space to prevent overflow crash on Windows (GH-19845) (cherry picked from commit ac4bf424119d1300f57929120968e216a85d3a25) Co-authored-by: Steve Dower <steve.dower@python.org> 05 May 2020, 18:03:21 UTC
efc782d bpo-40459: Fix NameError in platform.py (GH-19855) (cherry picked from commit 1e7e4519a8ddc2239101a0146d788c9161143a77) Co-authored-by: Dennis Sweeney <36520290+sweeneyde@users.noreply.github.com> 05 May 2020, 02:51:48 UTC
70fe95c bpo-40135: Fix multiprocessing test_shared_memory_across_processes() (GH-19892) Don't define shared memory block's name in test_shared_memory_across_processes(): use SharedMemory(create=True) instead. (cherry picked from commit caa3ef284a2e5e5b9bdd6a9e619804122c842d80) Co-authored-by: Hai Shi <shihai1992@gmail.com> 04 May 2020, 15:25:22 UTC
9609460 Remove outdated and confusing advice about setting maxsize (GH-19889) (GH-19890) 04 May 2020, 00:16:36 UTC
108e455 Fix missing space in docs(GH-19866) (GH-19872) 03 May 2020, 00:05:49 UTC
399b9a4 bpo-40419: timeit CLI docs now mention 1,2,5,10,... trials instead of powers of 10 (GH-19752) (cherry picked from commit 766352320fd736e2c8ed545b4cc57563f61a0b9d) Co-authored-by: Sander <svr003@gmail.com> 02 May 2020, 16:29:51 UTC
a629d4c [3.8] bpo-40398: Fix typing.get_args() for special generic aliases. (GH-19720) (GH-19857) (cherry picked from commit 6292be7adf247589bbf03524f8883cb4cb61f3e9) 02 May 2020, 08:08:00 UTC
1205afb bpo-40412: Nullify inittab_copy during finalization (GH-19746) Otherwise we leave a dangling pointer to free'd memory. If we then initialize a new interpreter in the same process and call PyImport_ExtendInittab, we will (likely) crash when calling PyMem_RawRealloc(inittab_copy, ...) since the pointer address is bogus. Automerge-Triggered-By: @brettcannon (cherry picked from commit 64224a4727321a8dd33e6f769edda401193ebef0) Co-authored-by: Gregory Szorc <gregory.szorc@gmail.com> 01 May 2020, 23:06:23 UTC
e058280 [3.8] bpo-39435: Fix docs for pickle.loads (GH-18160) (GH-19843) (cherry picked from commit 289842a) Co-authored-by: Shantanu <hauntsaninja@users.noreply.github.com> Automerge-Triggered-By: @pitrou 01 May 2020, 19:54:44 UTC
c9d7d32 bpo-39691: Clarify io.open_code behavior (GH-19824) (cherry picked from commit 831d58d7865cb98fa09227dc614f4f3ce6af968b) Co-authored-by: Shantanu <hauntsaninja@users.noreply.github.com> 01 May 2020, 18:04:25 UTC
71e6122 bpo-39562: Correctly updated the version section in the what's new document (GH-19838) 01 May 2020, 15:36:51 UTC
5055c27 [3.8] bpo-39562: Prevent collision of future and compiler flags (GH-19230) (GH-19835) The constant values of future flags in the __future__ module is updated in order to prevent collision with compiler flags. Previously PyCF_ALLOW_TOP_LEVEL_AWAIT was clashing with CO_FUTURE_DIVISION.. (cherry picked from commit 4454057269b995341b04d13f0bf97f96080f27d0) Co-authored-by: Batuhan Taşkaya <batuhanosmantaskaya@gmail.com> 01 May 2020, 14:18:27 UTC
95e208d bpo-40443: Remove unused imports in idlelib (GH-19801) (cherry picked from commit 6900f16d2207ca4fc252fa9d778ca0b13a3c95e0) Co-authored-by: Victor Stinner <vstinner@python.org> 30 April 2020, 01:47:50 UTC
e07fb66 Post 3.8.3rc1 29 April 2020, 22:43:53 UTC
802eb67 Python 3.8.3rc1 29 April 2020, 17:21:55 UTC
d9e9049 bpo-40436: Fix code parsing gdb version (GH-19792) test_gdb and test.pythoninfo now check gdb command exit code. (cherry picked from commit ec9bea4a3766bd815148a27f61eb24e7dd459ac7) Co-authored-by: Victor Stinner <vstinner@python.org> 29 April 2020, 15:30:01 UTC
cc011b5 [3.8] bpo-40431: Fix syntax typo in turtledemo (GH-19777) (#19784) [3.8] bpo-40431: Fix syntax typo in turtledemo (GH-19777) * Addresses a syntax typo that mistakenly used a undefined string prefix due to a missing space. (cherry picked from commit 49f70db83e2c62ad06805927f53f6c3e8f4b798e) Co-authored-by: Miro Hrončok <miro@hroncok.cz> 29 April 2020, 03:11:18 UTC
9412f4d bpo-40348: Fix typos in the programming FAQ (GH-19729) (cherry picked from commit caf1aadf3d020f742ba3d7fcf678ca700224914b) Co-authored-by: Zackery Spytz <zspytz@gmail.com> 27 April 2020, 03:29:30 UTC
ca5649c [3.8] bpo-38387: Formally document PyDoc_STRVAR and PyDoc_STR macros (GH-16607) (GH-19727) Adds a short description of `PyDoc_STRVAR` and `PyDoc_STR` to "Useful macros" section of C-API docs. Currently, there is [one lone mention](https://docs.python.org/3/c-api/module.html?highlight=pydoc_strvarGH-c.PyModuleDef) in the C-API reference, despite the fact that `PyDoc_STRVAR` is ubiquitous to `Modules/`. Additionally, this properly uses `c:macro` within `Doc/c-api/module.rst` to link. (cherry picked from commit b54e46c) Authored-by: Brad Solomon <brad.solomon.1124@gmail.com> 27 April 2020, 02:45:05 UTC
179f22c bpo-40387: Improve queue join() example. (GH-19724) (GH-19726) 27 April 2020, 01:23:14 UTC
882a7f4 bpo-40279: Add some error-handling to the module initialisation docs example (GH-19705) (GH-19710) (cherry picked from commit d4f3923d5901ef1ccdbe6ad6c5a753af90832a0f) Co-authored-by: Cajetan Rodrigues <caje731@gmail.com> 25 April 2020, 05:45:48 UTC
c7b55e9 Expand the implementation comments (GH-19699) (GH-19701) 24 April 2020, 10:04:41 UTC
d9df63d bpo-40048: Fix _PyCode_InitOpcache() error path (GH-19691) (GH-19698) If _PyCode_InitOpcache() fails in _PyEval_EvalFrameDefault(), use "goto exit_eval_frame;" rather than "return NULL;" to exit the function in a consistent state. For example, tstate->frame is now reset properly. (cherry picked from commit 25104949a5a60ff86c10691e184ce2ecb500159b) 24 April 2020, 01:07:20 UTC
3340b2a bpo-39983: Add test.support.print_warning() (GH-19683) (GH-19687) Log "Warning -- ..." test warnings into sys.__stderr__ rather than sys.stderr, to ensure to display them even if sys.stderr is captured. test.libregrtest.utils.print_warning() now calls test.support.print_warning(). (cherry picked from commit d663d34685e18588748569468c672763f4c73b3e) 23 April 2020, 21:55:07 UTC
714aa83 gdbinit: Use proper define syntax (GH-19557) Using `def` rather than `define` results in: Ambiguous command "def pu": define, define-prefix. Automerge-Triggered-By: @csabella (cherry picked from commit 1221135289306333d11db25ab20cbbd21ceec630) Co-authored-by: Florian Bruhin <me@the-compiler.org> 23 April 2020, 12:55:29 UTC
22a4849 Minor modernization and readability improvement to the tokenizer example (GH-19558) (GH-19661) (cherry picked from commit bf1a81258c0ecc8b52b9dcc53321c066b3ed4a67) 22 April 2020, 20:50:32 UTC
fc45cb4 bpo-40260: Remove unnecessary newline in compile() call (GH-19641) Because some people subclass this class and call undocumented methods, and we don't want to break them. (cherry picked from commit 39652cd8bdf7c82b7c6055089a4ed90ee546a448) Co-authored-by: Anthony Sottile <asottile@umich.edu> 22 April 2020, 19:05:10 UTC
4a6da0b bpo-38360: macOS: support alternate form of -isysroot flag (GH-16480) It is possible to use either '-isysroot /some/path' (with a space) or '-isysroot/some/path' (no space in between). Support both forms in places where special handling of -isysroot is done, rather than just the first form. Co-authored-by: Ned Deily <nad@python.org> (cherry picked from commit b310700976524b4b99ee319c947ca40468716fc9) Co-authored-by: Joshua Root <jmr@macports.org> 22 April 2020, 17:13:47 UTC
b073509 bpo-40138: Fix Windows os.waitpid() for large exit code (GH-19654) Fix the Windows implementation of os.waitpid() for exit code larger than "INT_MAX >> 8". The exit status is now interpreted as an unsigned number. 22 April 2020, 15:57:59 UTC
3a55450 bpo-38439: Add 256px IDLE icon (GH-17473) Icon author: Andrew Clover, bpo-1490384 (cherry picked from commit 3a69f3caeeaea57048ed3bc3051e16854b9a4cd6) Co-authored-by: Miro Hrončok <miro@hroncok.cz> 22 April 2020, 07:39:59 UTC
9e51aab bpo-40164: Update macOS installer builds to use OpenSSL 1.1.1g. (GH-19642) (cherry picked from commit 783a673f23c5e9ffafe12fe172e119dc0fa2abda) Co-authored-by: Ned Deily <nad@python.org> 22 April 2020, 03:00:27 UTC
back to top