bpo-33859: Fix spelling mistakes in docs. (GH-7691)

This commit is contained in:
Xtreak 2018-06-16 10:38:31 +05:30 committed by Serhiy Storchaka
parent b193fa996a
commit c151f7846d
7 changed files with 7 additions and 7 deletions

View 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.

View 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`.

View 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