diff options
author | Florian Dahlitz <f2dahlitz@freenet.de> | 2020-05-22 15:19:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-22 15:19:18 (GMT) |
commit | 30d5a7364db9e65ccabbdce2c20b84fe2fb233fb (patch) | |
tree | 1ec944f814ce41e9f628918c50c8f3c20ffc55cb /Doc/whatsnew/3.9.rst | |
parent | 0226f3eba0673f55025114537cc8141fb5dcbcdf (diff) | |
download | cpython-30d5a7364db9e65ccabbdce2c20b84fe2fb233fb.zip cpython-30d5a7364db9e65ccabbdce2c20b84fe2fb233fb.tar.gz cpython-30d5a7364db9e65ccabbdce2c20b84fe2fb233fb.tar.bz2 |
bpo-40730: Remove redundant 'to' (GH-20316)
@ericvsmith I guess it is correct to merge it into master and not 3.9 directly?
Automerge-Triggered-By: @ericvsmith
Diffstat (limited to 'Doc/whatsnew/3.9.rst')
-rw-r--r-- | Doc/whatsnew/3.9.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index 5fd0512..ebb24eb 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -605,7 +605,7 @@ Optimizations sums = [s for s in [0] for x in data for s in [s + x]] - Unlike to the ``:=`` operator this idiom does not leak a variable to the + Unlike the ``:=`` operator this idiom does not leak a variable to the outer scope. (Contributed by Serhiy Storchaka in :issue:`32856`.) |