summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-10-31 12:16:18 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2015-10-31 12:16:18 (GMT)
commit4827e488a4d1d82eb7bfeb194a7ad1d420535513 (patch)
tree3b561031a30e1c2329dce853e11ae76b2f08c2f9
parentc02948126c851b53109e4c0b4b11f26a62cceba9 (diff)
parent1f1177d69a21805c374b6b4cfce9f9f76bceb822 (diff)
downloadcpython-4827e488a4d1d82eb7bfeb194a7ad1d420535513.zip
cpython-4827e488a4d1d82eb7bfeb194a7ad1d420535513.tar.gz
cpython-4827e488a4d1d82eb7bfeb194a7ad1d420535513.tar.bz2
Merge spelling fixes from 3.4 into 3.5
-rw-r--r--Doc/library/ssl.rst2
-rw-r--r--Doc/library/tracemalloc.rst2
-rw-r--r--Doc/whatsnew/3.4.rst2
-rw-r--r--Lib/html/entities.py2
-rw-r--r--Misc/HISTORY2
-rw-r--r--Misc/NEWS2
6 files changed, 6 insertions, 6 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst
index 4075134..391d4c8 100644
--- a/Doc/library/ssl.rst
+++ b/Doc/library/ssl.rst
@@ -880,7 +880,7 @@ SSL sockets also have the following additional methods and attributes:
The :meth:`~SSLSocket.read` and :meth:`~SSLSocket.write` methods are the
low-level methods that read and write unencrypted, application-level data
- and and decrypt/encrypt it to encrypted, wire-level data. These methods
+ and decrypt/encrypt it to encrypted, wire-level data. These methods
require an active SSL connection, i.e. the handshake was completed and
:meth:`SSLSocket.unwrap` was not called.
diff --git a/Doc/library/tracemalloc.rst b/Doc/library/tracemalloc.rst
index 13c81a7..861be37 100644
--- a/Doc/library/tracemalloc.rst
+++ b/Doc/library/tracemalloc.rst
@@ -464,7 +464,7 @@ Snapshot
All inclusive filters are applied at once, a trace is ignored if no
inclusive filters match it. A trace is ignored if at least one exclusive
- filter matchs it.
+ filter matches it.
.. classmethod:: load(filename)
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
index 7faea32..7d9bc0d 100644
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -2076,7 +2076,7 @@ using ``-Wd``).
Deprecations in the Python API
------------------------------
-* As mentioned in :ref:`whatsnew-pep-451`, a number of :mod:`importilb`
+* As mentioned in :ref:`whatsnew-pep-451`, a number of :mod:`importlib`
methods and functions are deprecated: :meth:`importlib.find_loader` is
replaced by :func:`importlib.util.find_spec`;
:meth:`importlib.machinery.PathFinder.find_module` is replaced by
diff --git a/Lib/html/entities.py b/Lib/html/entities.py
index 3e1778b..91ea5da 100644
--- a/Lib/html/entities.py
+++ b/Lib/html/entities.py
@@ -224,7 +224,7 @@ name2codepoint = {
'spades': 0x2660, # black spade suit, U+2660 ISOpub
'sub': 0x2282, # subset of, U+2282 ISOtech
'sube': 0x2286, # subset of or equal to, U+2286 ISOtech
- 'sum': 0x2211, # n-ary sumation, U+2211 ISOamsb
+ 'sum': 0x2211, # n-ary summation, U+2211 ISOamsb
'sup': 0x2283, # superset of, U+2283 ISOtech
'sup1': 0x00b9, # superscript one = superscript digit one, U+00B9 ISOnum
'sup2': 0x00b2, # superscript two = superscript digit two = squared, U+00B2 ISOnum
diff --git a/Misc/HISTORY b/Misc/HISTORY
index 956d320..bca793c 100644
--- a/Misc/HISTORY
+++ b/Misc/HISTORY
@@ -1968,7 +1968,7 @@ Core and Builtins
change also applies to bytes.splitlines and bytearray.splitlines.
- Issue #7732: Don't open a directory as a file anymore while importing a
- module. Ignore the direcotry if its name matchs the module name (e.g.
+ module. Ignore the directory if its name matches the module name (e.g.
"__init__.py") and raise a ImportError instead.
- Issue #13021: Missing decref on an error path. Thanks to Suman Saha for
diff --git a/Misc/NEWS b/Misc/NEWS
index 6a9afeb..47c129b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -2692,7 +2692,7 @@ Library
- Issue #3015: _tkinter.create() now creates tkapp object with wantobject=1 by
default.
-- Issue #10203: sqlite3.Row now truly supports sequence protocol. In particulr
+- Issue #10203: sqlite3.Row now truly supports sequence protocol. In particular
it supports reverse() and negative indices. Original patch by Claudiu Popa.
- Issue #18807: If copying (no symlinks) specified for a venv, then the python