diff options
author | Min ho Kim <minho42@gmail.com> | 2019-07-05 21:39:32 (GMT) |
---|---|---|
committer | Brett Cannon <54418+brettcannon@users.noreply.github.com> | 2019-07-05 21:39:32 (GMT) |
commit | f7d72e48fb235684e17668a1e5107e6b0dab7b80 (patch) | |
tree | 58999471e0bd6bd96173f4b1039b82526a13c85d /Misc | |
parent | 10e5c66789a06dc9015a24968e96e77a75725a7a (diff) | |
download | cpython-f7d72e48fb235684e17668a1e5107e6b0dab7b80.zip cpython-f7d72e48fb235684e17668a1e5107e6b0dab7b80.tar.gz cpython-f7d72e48fb235684e17668a1e5107e6b0dab7b80.tar.bz2 |
Fix some typos (GH-14435)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/3.8.0a1.rst | 6 | ||||
-rw-r--r-- | Misc/NEWS.d/3.8.0a3.rst | 2 | ||||
-rw-r--r-- | Misc/NEWS.d/3.8.0b1.rst | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/Misc/NEWS.d/3.8.0a1.rst b/Misc/NEWS.d/3.8.0a1.rst index f4b0a04..84c2a6c 100644 --- a/Misc/NEWS.d/3.8.0a1.rst +++ b/Misc/NEWS.d/3.8.0a1.rst @@ -550,7 +550,7 @@ The *lineno* and *col_offset* attributes of the AST for decorated function and class refer now to the position of the corresponding ``def``, ``async def`` and ``class`` instead of the position of the first decorator. This leads to more correct line reporting in tracing. This is the only case when -the position of child AST nodes can preceed the position of the parent AST +the position of child AST nodes can precede the position of the parent AST node. .. @@ -2366,7 +2366,7 @@ running external programs like ``cmd /c ver``. Previously, calling the strftime() method on a datetime object with a trailing '%' in the format string would result in an exception. However, -this only occured when the datetime C module was being used; the python +this only occurred when the datetime C module was being used; the python implementation did not match this behavior. Datetime is now PEP-399 compliant, and will not throw an exception on a trailing '%'. @@ -5278,7 +5278,7 @@ Improved error handling and fixed a reference leak in .. nonce: zncfvW .. section: Library -Deleting a key from a read-only dbm database raises module specfic error +Deleting a key from a read-only dbm database raises module specific error instead of KeyError. .. diff --git a/Misc/NEWS.d/3.8.0a3.rst b/Misc/NEWS.d/3.8.0a3.rst index a7397b5..fc37b22 100644 --- a/Misc/NEWS.d/3.8.0a3.rst +++ b/Misc/NEWS.d/3.8.0a3.rst @@ -173,7 +173,7 @@ Update Unicode databases to version 12.0.0. .. nonce: dZemNt .. section: Core and Builtins -Fix a segfault occuring when sorting a list of heterogeneous values. Patch +Fix a segfault occurring when sorting a list of heterogeneous values. Patch contributed by RĂ©mi Lapeyre and Elliot Gorokhovsky. .. diff --git a/Misc/NEWS.d/3.8.0b1.rst b/Misc/NEWS.d/3.8.0b1.rst index 77f57df..3cebcfb 100644 --- a/Misc/NEWS.d/3.8.0b1.rst +++ b/Misc/NEWS.d/3.8.0b1.rst @@ -1613,7 +1613,7 @@ versions. .. section: Documentation Improve documentation of the stdin, stdout, and stderr arguments of of the -``asyncio.subprocess_exec`` function to specficy which values are supported. +``asyncio.subprocess_exec`` function to specify which values are supported. Also mention that decoding as text is not supported. Add a few tests to verify that the various values passed to the std* |