diff options
author | Min ho Kim <minho42@gmail.com> | 2019-08-30 20:21:19 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2019-08-30 20:21:19 (GMT) |
commit | 39d87b54715197ca9dcb6902bb43461c0ed701a2 (patch) | |
tree | 778362acb785069882291e2e39f64fd395d73889 /Misc | |
parent | 15119bc2a7e902ae1c6988556c3bef3de87fa789 (diff) | |
download | cpython-39d87b54715197ca9dcb6902bb43461c0ed701a2.zip cpython-39d87b54715197ca9dcb6902bb43461c0ed701a2.tar.gz cpython-39d87b54715197ca9dcb6902bb43461c0ed701a2.tar.bz2 |
Fix typos mostly in comments, docs and test names (GH-15209)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/HISTORY | 4 | ||||
-rw-r--r-- | Misc/NEWS.d/3.5.0a1.rst | 2 | ||||
-rw-r--r-- | Misc/NEWS.d/3.5.4rc1.rst | 2 | ||||
-rw-r--r-- | Misc/NEWS.d/3.6.0b1.rst | 2 | ||||
-rw-r--r-- | Misc/NEWS.d/3.6.0rc1.rst | 2 | ||||
-rw-r--r-- | Misc/NEWS.d/3.6.1rc1.rst | 2 | ||||
-rw-r--r-- | Misc/NEWS.d/3.7.0a1.rst | 2 | ||||
-rw-r--r-- | Misc/NEWS.d/3.8.0a1.rst | 2 | ||||
-rw-r--r-- | Misc/NEWS.d/3.8.0a4.rst | 2 | ||||
-rw-r--r-- | Misc/NEWS.d/3.8.0b1.rst | 2 |
10 files changed, 11 insertions, 11 deletions
diff --git a/Misc/HISTORY b/Misc/HISTORY index f49960c..32b2a37 100644 --- a/Misc/HISTORY +++ b/Misc/HISTORY @@ -1231,7 +1231,7 @@ Library - Issue #22448: Improve canceled timer handles cleanup to prevent unbound memory usage. Patch by Joshua Moore-Oliva. -- Issue #23009: Make sure selectors.EpollSelecrtor.select() works when no +- Issue #23009: Make sure selectors.EpollSelector.select() works when no FD is registered. IDLE @@ -16660,7 +16660,7 @@ Core and Builtins Exception (KeyboardInterrupt, and SystemExit) propagate instead of ignoring them. -- #3021 Exception reraising sematics have been significantly improved. However, +- #3021 Exception reraising semantics have been significantly improved. However, f_exc_type, f_exc_value, and f_exc_traceback cannot be accessed from Python code anymore. diff --git a/Misc/NEWS.d/3.5.0a1.rst b/Misc/NEWS.d/3.5.0a1.rst index 99f2d1d..56d0d33 100644 --- a/Misc/NEWS.d/3.5.0a1.rst +++ b/Misc/NEWS.d/3.5.0a1.rst @@ -1255,7 +1255,7 @@ Support wrapped callables in doctest. Patch by Claudiu Popa. .. nonce: -sW7gk .. section: Library -Make sure selectors.EpollSelecrtor.select() works when no FD is registered. +Make sure selectors.EpollSelector.select() works when no FD is registered. .. diff --git a/Misc/NEWS.d/3.5.4rc1.rst b/Misc/NEWS.d/3.5.4rc1.rst index f261ddb..04a035a 100644 --- a/Misc/NEWS.d/3.5.4rc1.rst +++ b/Misc/NEWS.d/3.5.4rc1.rst @@ -913,7 +913,7 @@ Fixed infinite recursion in the repr of uninitialized ctypes.CDLL instances. Fixed race condition in C implementation of functools.lru_cache. KeyError could be raised when cached function with full cache was simultaneously -called from differen threads with the same uncached arguments. +called from different threads with the same uncached arguments. .. diff --git a/Misc/NEWS.d/3.6.0b1.rst b/Misc/NEWS.d/3.6.0b1.rst index bd0e0a7..3fbae5c 100644 --- a/Misc/NEWS.d/3.6.0b1.rst +++ b/Misc/NEWS.d/3.6.0b1.rst @@ -1148,7 +1148,7 @@ dict constraint in ForwardRef._eval_type (upstream #252) .. nonce: hxh6_h .. section: Library -Make ``_normalize`` parameter to ``Fraction`` constuctor keyword-only, so +Make ``_normalize`` parameter to ``Fraction`` constructor keyword-only, so that ``Fraction(2, 3, 4)`` now raises ``TypeError``. .. diff --git a/Misc/NEWS.d/3.6.0rc1.rst b/Misc/NEWS.d/3.6.0rc1.rst index c44dec3..15769f9 100644 --- a/Misc/NEWS.d/3.6.0rc1.rst +++ b/Misc/NEWS.d/3.6.0rc1.rst @@ -48,7 +48,7 @@ they still are deprecated and will be disabled in 3.7. .. section: Library Fix a regression introduced in warnings.catch_warnings(): call -warnings.showwarning() if it was overriden inside the context manager. +warnings.showwarning() if it was overridden inside the context manager. .. diff --git a/Misc/NEWS.d/3.6.1rc1.rst b/Misc/NEWS.d/3.6.1rc1.rst index 1f9fb13..58fd1b0 100644 --- a/Misc/NEWS.d/3.6.1rc1.rst +++ b/Misc/NEWS.d/3.6.1rc1.rst @@ -435,7 +435,7 @@ Fix an important omission by adding Deque to the typing module. Fixed race condition in C implementation of functools.lru_cache. KeyError could be raised when cached function with full cache was simultaneously -called from differen threads with the same uncached arguments. +called from different threads with the same uncached arguments. .. diff --git a/Misc/NEWS.d/3.7.0a1.rst b/Misc/NEWS.d/3.7.0a1.rst index bbd72d7..244bb37 100644 --- a/Misc/NEWS.d/3.7.0a1.rst +++ b/Misc/NEWS.d/3.7.0a1.rst @@ -3651,7 +3651,7 @@ regular expression objects. Fixed race condition in C implementation of functools.lru_cache. KeyError could be raised when cached function with full cache was simultaneously -called from differen threads with the same uncached arguments. +called from different threads with the same uncached arguments. .. diff --git a/Misc/NEWS.d/3.8.0a1.rst b/Misc/NEWS.d/3.8.0a1.rst index 68217d3..c5ab5f4 100644 --- a/Misc/NEWS.d/3.8.0a1.rst +++ b/Misc/NEWS.d/3.8.0a1.rst @@ -2418,7 +2418,7 @@ over browsers in the ``BROWSER`` environment variable. .. nonce: eSLKBE .. section: Library -Avoid stripping trailing whitespace in doctest fancy diff. Orignial patch by +Avoid stripping trailing whitespace in doctest fancy diff. Original patch by R. David Murray & Jairo Trad. Enhanced by Sanyam Khurana. .. diff --git a/Misc/NEWS.d/3.8.0a4.rst b/Misc/NEWS.d/3.8.0a4.rst index 894ce0b..fc952fa 100644 --- a/Misc/NEWS.d/3.8.0a4.rst +++ b/Misc/NEWS.d/3.8.0a4.rst @@ -1110,7 +1110,7 @@ Add ``-fmax-type-align=8`` to CFLAGS when clang compiler is detected. The pymalloc memory allocator aligns memory on 8 bytes. On x86-64, clang expects alignment on 16 bytes by default and so uses MOVAPS instruction which can lead to segmentation fault. Instruct clang that Python is limited to -alignemnt on 8 bytes to use MOVUPS instruction instead: slower but don't +alignment on 8 bytes to use MOVUPS instruction instead: slower but don't trigger a SIGSEGV if the memory is not aligned on 16 bytes. Sadly, the flag must be added to ``CFLAGS`` and not just ``CFLAGS_NODIST``, since third party C extensions can have the same issue. diff --git a/Misc/NEWS.d/3.8.0b1.rst b/Misc/NEWS.d/3.8.0b1.rst index 609aa33..84b0350 100644 --- a/Misc/NEWS.d/3.8.0b1.rst +++ b/Misc/NEWS.d/3.8.0b1.rst @@ -1262,7 +1262,7 @@ Reinitialize logging.Handler locks in forked child processes instead of attempting to acquire them all in the parent before forking only to be released in the child process. The acquire/release pattern was leading to deadlocks in code that has implemented any form of chained logging handlers -that depend upon one another as the lock acquision order cannot be +that depend upon one another as the lock acquisition order cannot be guaranteed. .. |