]> granicus.if.org Git - python/commitdiff
bpo-33859: Fix spelling mistakes in docs. (GH-7691)
authorXtreak <tirkarthi@users.noreply.github.com>
Sat, 16 Jun 2018 05:08:31 +0000 (10:38 +0530)
committerSerhiy Storchaka <storchaka@gmail.com>
Sat, 16 Jun 2018 05:08:31 +0000 (08:08 +0300)
Doc/library/email.rst
Doc/library/importlib.rst
Doc/library/xmlrpc.client.rst
Doc/using/cmdline.rst
Doc/whatsnew/3.3.rst
Doc/whatsnew/3.6.rst
Doc/whatsnew/3.7.rst

index c4187dd0098d1a6cf257456ba5f05b013abfbb2f..1033d8c130eb756c8eba57d1d4813e07d28d47e8 100644 (file)
@@ -133,7 +133,7 @@ Legacy API:
 .. seealso::
 
    Module :mod:`smtplib`
-      SMTP (Simple Mail Transport Protcol) client
+      SMTP (Simple Mail Transport Protocol) client
 
    Module :mod:`poplib`
       POP (Post Office Protocol) client
index e33abae7aaca7881fef0f54432be1d4b3d744d06..74a73fdbddb4ccb225c7cae01fa2ba7b2abec2a8 100644 (file)
@@ -249,7 +249,7 @@ ABC hierarchy::
 
    .. abstractmethod:: find_module(fullname, path=None)
 
-      An abstact method for finding a :term:`loader` for the specified
+      An abstract method for finding a :term:`loader` for the specified
       module.  Originally specified in :pep:`302`, this method was meant
       for use in :data:`sys.meta_path` and in the path-based import subsystem.
 
index ed2ccaeae07a91fb785526e66d306577e97f45c1..27d92e324722eabdd4d8518d4c1f43a33d4ce1e3 100644 (file)
@@ -145,7 +145,7 @@ between conformable Python objects and XML on the wire.
 
    .. versionchanged:: 3.6
       Added support of type tags with prefixes (e.g. ``ex:nil``).
-      Added support of unmarsalling additional types used by Apache XML-RPC
+      Added support of unmarshalling additional types used by Apache XML-RPC
       implementation for numerics: ``i1``, ``i2``, ``i8``, ``biginteger``,
       ``float`` and ``bigdecimal``.
       See http://ws.apache.org/xmlrpc/types.html for a description.
index 9ddc515b80ccc0b46a4ec7bfe7cb720cfe3f6471..b61df8a4b77dff5464b2304fc53a3c928bb731ea 100644 (file)
@@ -905,7 +905,7 @@ conflict.
    If this environment variable is not set at all, then the interpreter defaults
    to using the current locale settings, *unless* the current locale is
    identified as a legacy ASCII-based locale
-   (as descibed for :envvar:`PYTHONCOERCECLOCALE`), and locale coercion is
+   (as described for :envvar:`PYTHONCOERCECLOCALE`), and locale coercion is
    either disabled or fails. In such legacy locales, the interpreter will
    default to enabling UTF-8 mode unless explicitly instructed not to do so.
 
index 7e5133dbb7208c6fbd2a4a2faca87e3ab6da324c..0575ac9e68187e5ae44cdbf0d5111f6dfff125a6 100644 (file)
@@ -1414,7 +1414,7 @@ http
 :class:`http.server.BaseHTTPRequestHandler` now buffers the headers and writes
 them all at once when :meth:`~http.server.BaseHTTPRequestHandler.end_headers` is
 called.  A new method :meth:`~http.server.BaseHTTPRequestHandler.flush_headers`
-can be used to directly manage when the accumlated headers are sent.
+can be used to directly manage when the accumulated headers are sent.
 (Contributed by Andrew Schaaf in :issue:`3709`.)
 
 :class:`http.server` now produces valid ``HTML 4.01 strict`` output.
index bb323619010400f5a34f356b4420f6beab322af7..1360af79d0731e576d13c539e0c16514b214676a 100644 (file)
@@ -1856,7 +1856,7 @@ Build and C API Changes
   For more information, see :pep:`7` and :issue:`17884`.
 
 * Cross-compiling CPython with the Android NDK and the Android API level set to
-  21 (Android 5.0 Lollilop) or greater runs successfully. While Android is not
+  21 (Android 5.0 Lollipop) or greater runs successfully. While Android is not
   yet a supported platform, the Python test suite runs on the Android emulator
   with only about 16 tests failures. See the Android meta-issue :issue:`26865`.
 
index f17542674ccbd92a82a14c9a17221d13d7d7e3da..287a027a04e145d35e583a6cc201c18913ade1a9 100644 (file)
@@ -2262,7 +2262,7 @@ Changes in the Python API
 
 * Because :func:`shutil.rmtree` is now implemented using the :func:`os.scandir`
   function, the user specified handler *onerror* is now called with the first
-  argument ``os.scandir`` instead of ``os.listdir`` when listing the direcory
+  argument ``os.scandir`` instead of ``os.listdir`` when listing the directory
   is failed.
 
 * Support for nested sets and set operations in regular expressions as in