Skip to content

Commit c151f78

Browse files
tirkarthiserhiy-storchaka
authored andcommitted
bpo-33859: Fix spelling mistakes in docs. (GH-7691)
1 parent b193fa9 commit c151f78

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

Doc/library/email.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ Legacy API:
133133
.. seealso::
134134

135135
Module :mod:`smtplib`
136-
SMTP (Simple Mail Transport Protcol) client
136+
SMTP (Simple Mail Transport Protocol) client
137137

138138
Module :mod:`poplib`
139139
POP (Post Office Protocol) client

Doc/library/importlib.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ ABC hierarchy::
249249

250250
.. abstractmethod:: find_module(fullname, path=None)
251251

252-
An abstact method for finding a :term:`loader` for the specified
252+
An abstract method for finding a :term:`loader` for the specified
253253
module. Originally specified in :pep:`302`, this method was meant
254254
for use in :data:`sys.meta_path` and in the path-based import subsystem.
255255

Doc/library/xmlrpc.client.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ between conformable Python objects and XML on the wire.
145145

146146
.. versionchanged:: 3.6
147147
Added support of type tags with prefixes (e.g. ``ex:nil``).
148-
Added support of unmarsalling additional types used by Apache XML-RPC
148+
Added support of unmarshalling additional types used by Apache XML-RPC
149149
implementation for numerics: ``i1``, ``i2``, ``i8``, ``biginteger``,
150150
``float`` and ``bigdecimal``.
151151
See http://ws.apache.org/xmlrpc/types.html for a description.

Doc/using/cmdline.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -905,7 +905,7 @@ conflict.
905905
If this environment variable is not set at all, then the interpreter defaults
906906
to using the current locale settings, *unless* the current locale is
907907
identified as a legacy ASCII-based locale
908-
(as descibed for :envvar:`PYTHONCOERCECLOCALE`), and locale coercion is
908+
(as described for :envvar:`PYTHONCOERCECLOCALE`), and locale coercion is
909909
either disabled or fails. In such legacy locales, the interpreter will
910910
default to enabling UTF-8 mode unless explicitly instructed not to do so.
911911

Doc/whatsnew/3.3.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1414,7 +1414,7 @@ http
14141414
:class:`http.server.BaseHTTPRequestHandler` now buffers the headers and writes
14151415
them all at once when :meth:`~http.server.BaseHTTPRequestHandler.end_headers` is
14161416
called. A new method :meth:`~http.server.BaseHTTPRequestHandler.flush_headers`
1417-
can be used to directly manage when the accumlated headers are sent.
1417+
can be used to directly manage when the accumulated headers are sent.
14181418
(Contributed by Andrew Schaaf in :issue:`3709`.)
14191419

14201420
:class:`http.server` now produces valid ``HTML 4.01 strict`` output.

Doc/whatsnew/3.6.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1856,7 +1856,7 @@ Build and C API Changes
18561856
For more information, see :pep:`7` and :issue:`17884`.
18571857

18581858
* Cross-compiling CPython with the Android NDK and the Android API level set to
1859-
21 (Android 5.0 Lollilop) or greater runs successfully. While Android is not
1859+
21 (Android 5.0 Lollipop) or greater runs successfully. While Android is not
18601860
yet a supported platform, the Python test suite runs on the Android emulator
18611861
with only about 16 tests failures. See the Android meta-issue :issue:`26865`.
18621862

Doc/whatsnew/3.7.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2262,7 +2262,7 @@ Changes in the Python API
22622262

22632263
* Because :func:`shutil.rmtree` is now implemented using the :func:`os.scandir`
22642264
function, the user specified handler *onerror* is now called with the first
2265-
argument ``os.scandir`` instead of ``os.listdir`` when listing the direcory
2265+
argument ``os.scandir`` instead of ``os.listdir`` when listing the directory
22662266
is failed.
22672267

22682268
* Support for nested sets and set operations in regular expressions as in

0 commit comments

Comments
 (0)