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

sort by:
Revision Author Date Message Commit Date
21a9af1 bpo-37309: Update IDLE NEWS.txt (GH-20356) (cherry picked from commit 16ef3241939a3a64a447e5d7aabaf2e29deca621) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> 24 May 2020, 14:16:09 UTC
874506c 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:14:17 UTC
a3c3e89 Remove spurious NULL in descrobject.c (GH-20344) Co-authored-by: hai shi <shihai1991@126.com> (cherry picked from commit 3f5f61409ebf95fa606bcbb15dfaaadad6084dc6) Co-authored-by: Hai Shi <shihai1992@gmail.com> 24 May 2020, 05:24:56 UTC
11fb605 Use Py_ssize_t for the column number in the PEG support code (GH-20341) (cherry picked from commit b23d7adfdfa66dd8e6f98e968b1ba885692b67d6) Co-authored-by: Pablo Galindo <Pablogsal@gmail.com> 24 May 2020, 05:20:44 UTC
9181e2e 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:23:53 UTC
962c814 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:19:13 UTC
c1d7768 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, 22:30:47 UTC
1e5cf94 [3.9] bpo-39631: Adds NEWS entry (GH-20227) (GH-20241) (cherry picked from commit 92327a9913150f5bb55b2727a2c5d50f9b7b6e55) Co-authored-by: Steve Dower <steve.dower@python.org> 22 May 2020, 22:29:13 UTC
7f77ac4 bpo-40696: Fix a hang that can arise after gen.throw() (GH-20287) This updates _PyErr_ChainStackItem() to use _PyErr_SetObject() instead of _PyErr_ChainExceptions(). This prevents a hang in certain circumstances because _PyErr_SetObject() performs checks to prevent cycles in the exception context chain while _PyErr_ChainExceptions() doesn't. (cherry picked from commit 7c30d12bd5359b0f66c4fbc98aa055398bcc8a7e) Co-authored-by: Chris Jerdonek <chris.jerdonek@gmail.com> 22 May 2020, 21:35:22 UTC
a08b7c3 bpo-9216: hashlib usedforsecurity fixes (GH-20258) func:`hashlib.new` passed ``usedforsecurity`` to OpenSSL EVP constructor ``_hashlib.new()``. test_hashlib and test_smtplib handle strict security policy better. Signed-off-by: Christian Heimes <christian@python.org> Automerge-Triggered-By: @tiran (cherry picked from commit 909b5714e1303357868bc5e281c1cf508d5d5a17) Co-authored-by: Christian Heimes <christian@python.org> 22 May 2020, 18:22:30 UTC
983b17c bpo-40730: Remove redundant 'to' (GH-20316) (GH-20318) @ericvsmith I guess it is correct to merge it into master and not 3.9 directly? Automerge-Triggered-By: @ericvsmith (cherry picked from commit 30d5a7364db9e65ccabbdce2c20b84fe2fb233fb) Co-authored-by: Florian Dahlitz <f2dahlitz@freenet.de> Co-authored-by: Florian Dahlitz <f2dahlitz@freenet.de> 22 May 2020, 15:26:54 UTC
51025e0 Fix the URL to fishshell.com (GH-20251) (cherry picked from commit da7d1f04086598a29f77bd452beefe847d038344) Co-authored-by: Jonathan Goble <jcgoble3@gmail.com> 22 May 2020, 14:32:21 UTC
5c01ed6 bpo-40725: Restore missing column of digits (GH-20313) (GH-20315) 22 May 2020, 14:18:01 UTC
427c696 Fix debug output in PEG parser generator (GH-20308) (cherry picked from commit b831129123dbb4bfba49824ae893448b05398f27) Co-authored-by: Pablo Galindo <Pablogsal@gmail.com> 22 May 2020, 02:05:20 UTC
55c8923 bpo-40334: Produce better error messages for non-parenthesized genexps (GH-20153) The error message, generated for a non-parenthesized generator expression in function calls, was still the generic `invalid syntax`, when the generator expression wasn't appearing as the first argument in the call. With this patch, even on input like `f(a, b, c for c in d, e)`, the correct error message gets produced. (cherry picked from commit ae145833025b0156ee2a28219e3370f3b27b2a36) Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com> 22 May 2020, 01:14:55 UTC
b4d08f1 [doc] Remove references to obsolete BuildApplet on macOS. (GH-20023) (GH-20304) (cherry picked from commit 7864f11cdf12807555d62c7a132c191eb41ecc02) Co-authored-by: Andre Delfino <adelfino@gmail.com> 21 May 2020, 23:01:41 UTC
d00aaf3 bpo-40715: Reject dict unpacking on dict comprehensions (GH-20292) Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com> Co-authored-by: Pablo Galindo <pablogsal@gmail.com> (cherry picked from commit b8a65ec1d3d4660d0ee38a9765d98f5cdcabdef5) Co-authored-by: Batuhan Taskaya <isidentical@gmail.com> 21 May 2020, 22:58:16 UTC
7178b1b [3.9] Fix typing problems reported by mypy in pegen (GH-20297) (GH-20300) (cherry picked from commit d10fef35c6ce8a3193b974be7e8c8304b1146153) Co-authored-by: Pablo Galindo <Pablogsal@gmail.com> 21 May 2020, 21:09:43 UTC
275d7e1 [3.9] bpo-40176: Improve error messages for trailing comma on from import (GH-20294) (GH-20302) (cherry picked from commit 72e0aa2) Co-authored-by: Batuhan Taskaya <batuhanosmantaskaya@gmail.com> 21 May 2020, 21:04:54 UTC
c817a1c [3.9] bpo-40714: Remove compile warning from _zoneinfo.c (GH-20291) (GH-20293) (cherry picked from commit a487a39dca4c41305928c7dfdbcb0b3aa344683b) Co-authored-by: Dong-hee Na <donghee.na92@gmail.com> Automerge-Triggered-By: @corona10 21 May 2020, 17:15:53 UTC
3e65054 bpo-32309: Add support for contextvars in asyncio.to_thread() (GH-20278) Allows contextvars from the main thread to be accessed in the separate thread used in `asyncio.to_thread()`. See the [discussion](https://github.com/python/cpython/pull/20143GH-discussion_r427808225) in GH-20143 for context. Automerge-Triggered-By: @aeros (cherry picked from commit 0f56263e62ba91d0baae40fb98947a3a98034a73) Co-authored-by: Kyle Stanley <aeros167@gmail.com> 21 May 2020, 05:38:00 UTC
6387358 Update whatsnew benchmark results for 3.9 (GH-20276) (GH-20277) 21 May 2020, 02:11:28 UTC
4a1dba7 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:47 UTC
412ed13 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:25 UTC
f541a37 bpo-40698: Improve distutils upload hash digests (GH-20260) - Fix upload test on systems that blocks MD5 - Add SHA2-256 and Blake2b-256 digests based on new Warehous and twine specs. Signed-off-by: Christian Heimes <christian@python.org> (cherry picked from commit e572c7f6dbe5397153803eab256e4a4ca3384f80) Co-authored-by: Christian Heimes <christian@python.org> 20 May 2020, 14:57:08 UTC
e7bf868 bpo-34956: edit and format better NEWS item in 3.9.0b1 changelog (GH-20255) (cherry picked from commit bac170cd93bbae939fcb29ccc6b5d423f7f4a089) Co-authored-by: Ned Deily <nad@python.org> 20 May 2020, 09:47:07 UTC
12fa658 bpo-40291: Mention socket.CAN_J1939 in What's New (GH-20248) This mentions the new CAN_J1939 implementation in the What's New documentation for Python 3.9 Automerge-Triggered-By: @gvanrossum (cherry picked from commit 550f30c8f33a2ba844db2ce3da8a897b3e882c9a) Co-authored-by: karl ding <karlding@users.noreply.github.com> 20 May 2020, 02:37:17 UTC
6ed3743 bpo-40645: restrict HMAC key len to INT_MAX (GH-20238) Signed-off-by: Christian Heimes <christian@python.org> Automerge-Triggered-By: @tiran (cherry picked from commit aca4670ad695d4b01c7880fe3d0af817421945bd) Co-authored-by: Christian Heimes <christian@python.org> 19 May 2020, 22:52:54 UTC
059279d bpo-38870: invalid escape sequence (GH-20240) `/home/isidentical/cpython/cpython/Lib/test/test_unparse.py:333: DeprecationWarning: invalid escape sequence \X` Automerge-Triggered-By: @pablogsal (cherry picked from commit dd74b6fde31aff9aa46c4fc2a830c569764e1b63) Co-authored-by: Batuhan Taskaya <batuhanosmantaskaya@gmail.com> 19 May 2020, 22:33:45 UTC
9512ad7 [3.9] bpo-40514: Remove --with-experimental-isolated-subinterpreters in 3.9 (GH-20228) Remove --with-experimental-isolated-subinterpreters configure option in Python 3.9: the experiment continues in the master branch, but it's no longer needed in 3.9. 19 May 2020, 22:27:46 UTC
b008445 Enable GitHub Actions for 3.9 branch (GH-20231) (cherry picked from commit c105f7d8955ef9bf51125f6e44e8543e5f0618df) Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com> 19 May 2020, 17:24:52 UTC
b5bd435 bpo-40683: Add zoneinfo to LIBSUBDIRS (GH-20229) Without this, only the _zoneinfo module is getting installed, not the zoneinfo module. I believe this was not noticed earlier because test.test_zoneinfo was also not being installed. (cherry picked from commit 2abededbc4165d2daa14ae9d74b1f33cce0593d7) Co-authored-by: Paul Ganssle <paul@ganssle.io> 19 May 2020, 16:13:15 UTC
20736b3 Fix code-block in zoneinfo (GH-20201) ``` Warning, treated as error: /tmp/code/Doc/library/zoneinfo.rst:303:Error in "code-block" directive: 1 argument(s) required, 0 supplied. .. code-block:: >>> a = ZoneInfo("Europe/Berlin") >>> b = pickle.loads(europe_berlin_pkl) >>> a is b True ``` (cherry picked from commit 9095f76613c8dd67beb21992def837bb8a37ed25) Co-authored-by: Anthony Sottile <asottile@umich.edu> 19 May 2020, 14:02:32 UTC
76d9a9c 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:40:21 UTC
c06983b 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:39:16 UTC
73812a4 [3.9] Doc: Python 3.10 in sidebar and version switcher. (GH-20209) (GH-20221) (cherry picked from commit 19e3e0026417caa92ffe21a67157363b45da9aa2) Co-authored-by: Julien Palard <julien@palard.fr> 19 May 2020, 12:31:57 UTC
e299130 bpo-32309: Implement asyncio.to_thread() (GH-20143) Implements `asyncio.to_thread`, a coroutine for asynchronously running IO-bound functions in a separate thread without blocking the event loop. See the discussion starting from [here](https://github.com/python/cpython/pull/18410GH-issuecomment-628930973) in GH-18410 for context. Automerge-Triggered-By: @aeros (cherry picked from commit cc2bbc2227c3f5ed9d8f6b3bd052e6f9e68279d2) Co-authored-by: Kyle Stanley <aeros167@gmail.com> 19 May 2020, 10:03:25 UTC
3d06282 bpo-40669: Use requirements.pip when installing PEG dependencies (GH-20194) (cherry picked from commit 3764069f3ba2a7e932837ae19265059339dc86e3) Co-authored-by: Pablo Galindo <Pablogsal@gmail.com> 19 May 2020, 02:31:28 UTC
f02c304 Use _PyErr_ChainStackItem() inside gen_send_ex(). (GH-20173) (#20202) _PyErr_ChainStackItem was just added in GH-19951 (for bpo-31033). (cherry picked from commit ff7a8b03c49153021d6de5d0b2fa8b5163059ed6) Co-authored-by: Chris Jerdonek <chris.jerdonek@gmail.com> Co-authored-by: Chris Jerdonek <chris.jerdonek@gmail.com> 19 May 2020, 02:14:13 UTC
1bf7578 Update README links to point to 3.9 and not master 19 May 2020, 00:31:31 UTC
5e6f198 Post 3.9.0b1 19 May 2020, 00:12:30 UTC
97fe9cf Python 3.9.0b1 18 May 2020, 23:07:09 UTC
a3ec3ad bpo-40275: More lazy imports in test.support (GH-20131) Make the the following imports lazy in test.support: * bz2 * gzip * lzma * resource * zlib The following test.support decorators now need to be called with parenthesis: * @support.requires_bz2 * @support.requires_gzip * @support.requires_lzma * @support.requires_zlib For example, "@requires_zlib" becomes "@requires_zlib()". 18 May 2020, 22:02:57 UTC
ced4e5c Regenerate the parser (#20195) 18 May 2020, 21:47:51 UTC
c102a14 bpo-38870: Don't omit parenthesis when unparsing a slice in ast.unparse When unparsing a non-empty tuple, the parentheses can be safely omitted if there aren't any elements that explicitly require them (such as starred expressions). 18 May 2020, 20:48:49 UTC
75b863a bpo-40334: Reproduce error message for type comments on bare '*' in the new parser (GH-20151) 18 May 2020, 19:14:47 UTC
d71a649 bpo-38870: correctly escape unprintable characters on ast.unparse (GH-20166) Unprintable characters such as `\x00` weren't correctly roundtripped due to not using default string repr when generating docstrings. This patch correctly encodes all unprintable characters (except `\n` and `\t`, which are commonly used for formatting, and found unescaped). Co-authored-by: Pablo Galindo <Pablogsal@gmail.com> Co-authored-by: Batuhan Taskaya <isidentical@gmail.com> 18 May 2020, 18:41:35 UTC
dc31800 bpo-40669: Install PEG benchmarking dependencies in a venv (GH-20183) Create a `make venv` target, that creates a virtual environment and installs the dependency in that venv. `make time` and all the related targets are changed to use the virtual environment python. Automerge-Triggered-By: @pablogsal 18 May 2020, 18:27:40 UTC
2135e10 bpo-40663: Correctly handle annotations with subscripts in ast_unparse.c (GH-20156) 18 May 2020, 18:23:48 UTC
e6578a2 bpo-40662: Fixed ast.get_source_segment for ast nodes that have incomplete location information (GH-20157) Co-authored-by: Pablo Galindo <Pablogsal@gmail.com> 18 May 2020, 18:14:12 UTC
63b8e0c bpo-40528: Improve AST generation script to do builds simultaneously (GH-19968) - Switch from getopt to argparse. - Removed the limitation of not being able to produce both C and H simultaneously. This will make it run faster since it parses the asdl definition once and uses the generated tree to generate both the header and the C source. 18 May 2020, 17:42:10 UTC
7b7a21b bpo-40661: Fix segfault when parsing invalid input (GH-20165) Fix segfaults when parsing very complex invalid input, like `import äˆ ð£„¯ð¢·žð±‹á”€ð””ð‘©±å®ä±¬ð©¾\n𗶽`. Co-authored-by: Guido van Rossum <guido@python.org> Co-authored-by: Pablo Galindo <pablogsal@gmail.com> 18 May 2020, 17:32:03 UTC
08b47c3 bpo-40257: Revert changes to inspect.getdoc() (GH-20073) 18 May 2020, 17:25:07 UTC
98e42d1 bpo-35890: Use RegQueryInfoKeyW and CryptAcquireContextW explicitly (GH-19974) 18 May 2020, 16:50:03 UTC
f660567 bpo-40650: Include winsock2.h in pytime.c, instead of a full windows.h (GH-20137) 18 May 2020, 16:22:53 UTC
7f21c9a bpo-40653: Move _dirnameW out of #ifdef HAVE_SYMLINK/#endif (GH-20144) 18 May 2020, 16:17:19 UTC
951ab58 Revert "bpo-26317: Support OBJC and OBJCXX configure command line variables (GH-20176)" (GH-20182) This reverts commit 0da546665075aefbb476e192ed64122d340164f4. The commit is causing make failures on a FreeBSD buildbot. Due to the imminent 3.9.0b1 cutoff, revert this commit for now pending further investigation. 18 May 2020, 15:31:21 UTC
adc72bb bpo-38112: Document that compileall.compile_[dir,file] also accept multiple opt levels (GH-20174) 18 May 2020, 13:23:37 UTC
0da5466 bpo-26317: Support OBJC and OBJCXX configure command line variables (GH-20176) Add support to the configure script for OBJC and OBJCXX command line options so that the macOS builds can use the clang compiler for the macOS-specific Objective C source files. This allows third-party compilers, like GNU gcc, to be used to build the rest of the project since some of the Objective C system header files are not compilable by GNU gcc. Co-authored-by: Jeffrey Kintscher <websurfer@surf2c.net> Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> 18 May 2020, 13:17:22 UTC
c444108 bpo-40548: Github Actions: update actions/checkout to v2 (GH-20164) Signed-off-by: Filipe Laíns <lains@archlinux.org> 18 May 2020, 12:52:45 UTC
1731d6d bpo-34956: Fix macOS _tkinter use of Tcl/Tk in /Library/Frameworks (GH-20171) _tkinter now builds and links with non-system Tcl and Tk frameworks if they are installed in /Library/Frameworks as had been the case on older releases of macOS. If a macOS SDK is explicitly configured, by using ./configure --enable-universalsdk= or -isysroot, only a Library/Frameworks directory in the SDK itself is searched. The default behavior can still be overridden with configure --with-tcltk-includes and --with-tcltk-libs. 18 May 2020, 08:32:38 UTC
58205a0 bpo-39148: fixup to account for IPV6_ENABLED being moved (GH-20170) 18 May 2020, 07:56:47 UTC
442634c 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 18 May 2020, 06:21:30 UTC
da742ba bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951) When an asyncio.Task is cancelled, the exception traceback now starts with where the task was first interrupted. Previously, the traceback only had "depth one." 18 May 2020, 05:47:31 UTC
d17f3d8 bpo-13601: Mention stderr's line buffering in What's New (GH-20168) 18 May 2020, 05:07:57 UTC
bb8635c bpo-40651: Improve LRU recipe in the OrderedDict documentation (GH-#20139) 18 May 2020, 03:50:51 UTC
3a855b2 bpo-40665: Use Argument Clinic for the bisect module (GH-20163) 18 May 2020, 03:38:35 UTC
e527ec8 bpo-40536: Add zoneinfo.available_timezones (GH-20158) This was not specified in the PEP, but it will likely be a frequently requested feature if it's not included. This includes only the "canonical" zones, not a simple listing of every valid value of `key` that can be passed to `Zoneinfo`, because it seems likely that that's what people will want. 18 May 2020, 01:55:11 UTC
9681953 bpo-39058: Preserve attribute order in argparse Namespace reprs. (GH-17621) 18 May 2020, 01:53:01 UTC
eefd4e0 bpo-39705 : sorted() tutorial example under looping techniques improved (GH-18999) 18 May 2020, 01:32:34 UTC
6546056 Doc: change 'Posix' for 'POSIX' (GH-20001) 17 May 2020, 21:29:51 UTC
4eba677 Doc: move a dot outside double quotes (GH-20007) 17 May 2020, 21:24:59 UTC
62ecd8a bpo-37630: Fix spelling shake128 -> shake_128 (GH-20154) 17 May 2020, 16:32:38 UTC
54f2898 bpo-40645: Implement HMAC in C (GH-20129) The internal module ``_hashlib`` wraps and exposes OpenSSL's HMAC API. The new code will be used in Python 3.10 after the internal implementation details of the pure Python HMAC module are no longer part of the public API. The code is based on a patch by Petr Viktorin for RHEL and Python 3.6. Co-Authored-By: Petr Viktorin <encukou@gmail.com> 17 May 2020, 11:49:10 UTC
4654500 bpo-39976: Add **other_popen_kwargs to subprocess docs (GH-20145) Patch by Zackery Spytz. 17 May 2020, 10:52:47 UTC
fa098b6 bpo-35569: add Erlend to Misc/ACKS (GH-20146) 17 May 2020, 06:57:25 UTC
9a45bfe bpo-35569: Expose RFC 3542 IPv6 socket options on macOS (GH-19526) 17 May 2020, 06:32:46 UTC
d7184d3 bpo-29587: Add another test for the gen.throw() fix. (GH-19859) 17 May 2020, 04:14:48 UTC
2c8cd06 bpo-40334: Improvements to error-handling code in the PEG parser (GH-20003) The following improvements are implemented in this commit: - `p->error_indicator` is set, in case malloc or realloc fail. - Avoid memory leaks in the case that realloc fails. - Call `PyErr_NoMemory()` instead of `PyErr_Format()`, because it requires no memory. Co-authored-by: Pablo Galindo <Pablogsal@gmail.com> 17 May 2020, 03:19:23 UTC
6341fc7 bpo-38870: Use subTest in test_unparse for better error reporting (GH-20141) 17 May 2020, 02:53:57 UTC
af8e5f8 Use subTest in test_exceptions for better error reporting (GH-20140) 17 May 2020, 00:22:00 UTC
837f9e4 bpo-40645: Deprecated internal details of hmac.HMAC (GH-20132) 16 May 2020, 23:05:40 UTC
dff92bb bpo-38870: Implement round tripping support for typed AST in ast.unparse (GH-17797) 16 May 2020, 23:04:12 UTC
e966af7 bpo-38870: Correctly handle empty docstrings in ast.unparse (GH-18768) Co-authored-by: Pablo Galindo <Pablogsal@gmail.com> 16 May 2020, 22:49:07 UTC
d5a980a bpo-40165: Suppress stderr when checking if test_stty_match should be skipped (GH-19325) 16 May 2020, 22:38:02 UTC
cae2275 bpo-40211: Clarify os.preadv and os.pwritev are supported on AIX 7.1+ (GH-19401) 16 May 2020, 22:36:40 UTC
31245d1 bpo-39740: Early declare devpoll_methods to support old compilers (GH-19281) 16 May 2020, 22:36:14 UTC
25160cd bpo-38870: Don't put unnecessary parentheses on class declarations in ast.parse (GH-20134) 16 May 2020, 21:53:25 UTC
ce4a753 bpo-38870: Do not separate factor prefixes in ast.unparse (GH-20133) 16 May 2020, 21:46:11 UTC
d5b3f6b bpo-37630: Use SHA3 and SHAKE XOF from OpenSSL (GH-16049) OpenSSL 1.1.1 comes with SHA3 and SHAKE builtin. Signed-off-by: Christian Heimes <christian@python.org> Automerge-Triggered-By: @tiran 16 May 2020, 20:27:06 UTC
b17e49e bpo-40503: Add documentation and what's new entry for zoneinfo (GH-20006) This adds the documentation for the `zoneinfo` module added in PEP 615: https://www.python.org/dev/peps/pep-0615/ The implementation itself was GH-19909: https://github.com/python/cpython/pull/19909 bpo-40503: https://bugs.python.org/issue40503 Co-authored-by: Victor Stinner <vstinner@python.org> 16 May 2020, 16:14:58 UTC
1b97b9b bpo-24416: Return named tuple from date.isocalendar() (GH-20113) {date, datetime}.isocalendar() now return a private custom named tuple object IsoCalendarDate rather than a simple tuple. In order to leave IsocalendarDate as a private class and to improve what backwards compatibility is offered for pickling the result of a datetime.isocalendar() call, add a __reduce__ method to the named tuples that reduces them to plain tuples. (This is the part of this PR most likely to cause problems — if it causes major issues, switching to a strucseq or equivalent would be prudent). The pure python implementation of IsoCalendarDate uses positional-only arguments, since it is private and only constructed by position anyway; the equivalent change in the argument clinic on the C side would require us to move the forward declaration of the type above the clinic import for whatever reason, so it seems preferable to hold off on that for now. bpo-24416: https://bugs.python.org/issue24416 Original PR by Dong-hee Na with only minor alterations by Paul Ganssle. Co-authored-by: Dong-hee Na <donghee.na92@gmail.com> 16 May 2020, 14:02:59 UTC
aa92a7c bpo-39305: Update nntplib to merge nntplib.NNTP and nntplib._NNTPBase (GH-19817) 16 May 2020, 10:31:54 UTC
372fa3e bpo-40275: lazy import modules in test.support (GH-20128) Automerge-Triggered-By: @vstinner 16 May 2020, 10:01:39 UTC
4541086 bpo-40192: Use thread_cputime for time.thread_time to improve resolution (GH-19381) On AIX, time.thread_time() is now implemented with thread_cputime() which has nanosecond resolution, rather than clock_gettime(CLOCK_THREAD_CPUTIME_ID) which has a resolution of 10 ms. 16 May 2020, 09:39:09 UTC
62972d9 bpo-40503: PEP 615: Tests and implementation for zoneinfo (GH-19909) This is the initial implementation of PEP 615, the zoneinfo module, ported from the standalone reference implementation (see https://www.python.org/dev/peps/pep-0615/#reference-implementation for a link, which has a more detailed commit history). This includes (hopefully) all functional elements described in the PEP, but documentation is found in a separate PR. This includes: 1. A pure python implementation of the ZoneInfo class 2. A C accelerated implementation of the ZoneInfo class 3. Tests with 100% branch coverage for the Python code (though C code coverage is less than 100%). 4. A compile-time configuration option on Linux (though not on Windows) Differences from the reference implementation: - The module is arranged slightly differently: the accelerated module is `_zoneinfo` rather than `zoneinfo._czoneinfo`, which also necessitates some changes in the test support function. (Suggested by Victor Stinner and Steve Dower.) - The tests are arranged slightly differently and do not include the property tests. The tests live at test/test_zoneinfo/test_zoneinfo.py rather than test/test_zoneinfo.py or test/test_zoneinfo/__init__.py because we may do some refactoring in the future that would likely require this separation anyway; we may: - include the property tests - automatically run all the tests against both pure Python and C, rather than manually constructing C and Python test classes (similar to the way this works with test_datetime.py, which generates C and Python test cases from datetimetester.py). - This includes a compile-time configuration option on Linux (though not on Windows); added with much help from Thomas Wouters. - Integration into the CPython build system is obviously different from building a standalone zoneinfo module wheel. - This includes configuration to install the tzdata package as part of CI, though only on the coverage jobs. Introducing a PyPI dependency as part of the CI build was controversial, and this is seen as less of a major change, since the coverage jobs already depend on pip and PyPI. Additional changes that were introduced as part of this PR, most / all of which were backported to the reference implementation: - Fixed reference and memory leaks With much debugging help from Pablo Galindo - Added smoke tests ensuring that the C and Python modules are built The import machinery can be somewhat fragile, and the "seamlessly falls back to pure Python" nature of this module makes it so that a problem building the C extension or a failure to import the pure Python version might easily go unnoticed. - Adjustments to zoneinfo.__dir__ Suggested by Petr Viktorin. - Slight refactorings as suggested by Steve Dower. - Removed unnecessary if check on std_abbr Discovered this because of a missing line in branch coverage. 16 May 2020, 08:20:06 UTC
6e8cda9 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 16 May 2020, 01:33:05 UTC
6b6092f bpo-39075: types.SimpleNamespace no longer sorts attributes in its repr (GH-19430) 16 May 2020, 01:27:54 UTC
1ce5841 bpo-31033: Add a msg argument to Future.cancel() and Task.cancel() (GH-19979) 15 May 2020, 23:55:50 UTC
fe1176e Add Andrew York to ACKS for GH-19622. (GH-20105) This updates ACKS for commit 003708bcf8f2c58d4b65f68318acf164d713e008 contributed by Andrew York. 15 May 2020, 22:19:39 UTC
back to top