summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-05-26 05:35:26 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-05-26 05:35:26 (GMT)
commit46f50726a0047ae81d478c3a206f587b8f35ed08 (patch)
tree2046fa568e0abebe8f055b30fbbd4585a429a708 /Misc
parenteb9aca3c071aab925831a389ab26816c170dc159 (diff)
downloadcpython-46f50726a0047ae81d478c3a206f587b8f35ed08.zip
cpython-46f50726a0047ae81d478c3a206f587b8f35ed08.tar.gz
cpython-46f50726a0047ae81d478c3a206f587b8f35ed08.tar.bz2
Issue #27076: Doc, comment and tests spelling fixes
Most fixes to Doc/ and Lib/ directories by Ville Skyttä.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/HISTORY6
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 5 deletions
diff --git a/Misc/HISTORY b/Misc/HISTORY
index 3457022..19d612e 100644
--- a/Misc/HISTORY
+++ b/Misc/HISTORY
@@ -26799,7 +26799,7 @@ the first time it is imported.
python parser. Corresponding standard library modules token and symbol
defines the numeric values of tokens and non-terminal symbols.
-* The posix module has aquired new functions setuid(), setgid(),
+* The posix module has acquired new functions setuid(), setgid(),
execve(), and exec() has been renamed to execv().
* The array module is extended with 8-byte object swaps, the 'i'
@@ -26813,7 +26813,7 @@ module can't be decoded by the new version.
* For select.select(), a timeout (4th) argument of None means the same
as leaving the timeout argument out.
-* Module strop (and hence standard library module string) has aquired
+* Module strop (and hence standard library module string) has acquired
a new function: rindex(). Thanks to Amrit Prem!
* Module regex defines a new function symcomp() which uses an extended
@@ -27959,7 +27959,7 @@ New features in 0.9.6:
to give more useful results for negative operands
- Changed/added range checks for long/plain integer shifts
- Options found after "-c command" are now passed to the command in sys.argv
- (note subtle incompatiblity with "python -c command -- -options"!)
+ (note subtle incompatibility with "python -c command -- -options"!)
- Module stdwin is better protected against touching objects after they've
been closed; menus can now also be closed explicitly
- Stdwin now uses its own exception (stdwin.error)
diff --git a/Misc/NEWS b/Misc/NEWS
index c4e6826..bf9843f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -2105,7 +2105,7 @@ Library
- Issue #23704: collections.deque() objects now support methods for index(),
insert(), and copy(). This allows deques to be registered as a
- MutableSequence and it improves their substitutablity for lists.
+ MutableSequence and it improves their substitutability for lists.
- Issue #23715: :func:`signal.sigwaitinfo` and :func:`signal.sigtimedwait` are
now retried when interrupted by a signal not in the *sigset* parameter, if
@@ -7342,7 +7342,7 @@ Library
internal XML encoding is not UTF-8 or US-ASCII. It also now accepts bytes
and strings larger than 2 GiB.
-- Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTuple
+- Issue #6083: Fix multiple segmentation faults occurred when PyArg_ParseTuple
parses nested mutating sequence.
- Issue #5289: Fix ctypes.util.find_library on Solaris.