Skip to content

Commit ea86634

Browse files
committed
Docs: fix typos in documentation
1 parent 4d3ef80 commit ea86634

10 files changed

+15
-15
lines changed

Diff for: Misc/NEWS.d/3.10.0a4.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ be created automatically.
412412
413413
``logging.disable`` will now validate the types and value of its parameter.
414414
It also now accepts strings representing the levels (as does
415-
``loging.setLevel``) instead of only the numerical values.
415+
``logging.setLevel``) instead of only the numerical values.
416416

417417
..
418418

Diff for: Misc/NEWS.d/3.11.0a1.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -972,7 +972,7 @@ manager` protocols correspondingly.
972972
.. section: Core and Builtins
973973
974974
Make sure that the line number is set when entering a comprehension scope.
975-
Ensures that backtraces inclusing generator expressions show the correct
975+
Ensures that backtraces including generator expressions show the correct
976976
line number.
977977

978978
..

Diff for: Misc/NEWS.d/3.11.0a2.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ module but frozen modules are disabled.
3434
.. nonce: veL4lJ
3535
.. section: Core and Builtins
3636
37-
Specialize simple calls to Python functions (no starargs, keyowrd dict, or
37+
Specialize simple calls to Python functions (no starargs, keyword dict, or
3838
closure)
3939

4040
..

Diff for: Misc/NEWS.d/3.11.0a5.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,7 @@ tests to use ``support.infinite_recursion()``. Patch by Victor Stinner.
748748
749749
Skip test_builtin PTY tests on non-ASCII characters if the readline module
750750
is loaded. The readline module changes input() behavior, but test_builtin is
751-
not intented to test the readline module. Patch by Victor Stinner.
751+
not intended to test the readline module. Patch by Victor Stinner.
752752

753753
..
754754

Diff for: Misc/NEWS.d/3.11.0a6.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -1088,7 +1088,7 @@ Patch by Kumar Aditya.
10881088
10891089
Fix wasm32-emscripten test failures and platform issues. - Disable syscalls
10901090
that are not supported or don't work, e.g. wait, getrusage, prlimit,
1091-
mkfifo, mknod, setres[gu]id, setgroups. - Use fd_count to cound open fds. -
1091+
mkfifo, mknod, setres[gu]id, setgroups. - Use fd_count to count open fds. -
10921092
Add more checks for subprocess and fork. - Add workarounds for missing
10931093
_multiprocessing and failing socket.accept(). - Enable bzip2. - Disable
10941094
large file support. - Disable signal.alarm.
@@ -1162,7 +1162,7 @@ Terry Jan Reedy.
11621162
.. section: C API
11631163
11641164
Python's public headers no longer import ``<stdbool.h>``, leaving code that
1165-
embedd/extends Python free to define ``bool``, ``true`` and ``false``.
1165+
embed/extends Python free to define ``bool``, ``true`` and ``false``.
11661166

11671167
..
11681168
@@ -1182,7 +1182,7 @@ internal C API ``pycore_frame.h`` header file. Patch by Victor Stinner.
11821182
.. section: C API
11831183
11841184
Rename ``Include/buffer.h`` header file to ``Include/pybuffer.h`` to avoid
1185-
conflits with projects having an existing ``buffer.h`` header file. Patch by
1185+
conflicts with projects having an existing ``buffer.h`` header file. Patch by
11861186
Victor Stinner.
11871187

11881188
..
@@ -1202,5 +1202,5 @@ API). Patch by Victor Stinner.
12021202
.. nonce: __ZdpH
12031203
.. section: C API
12041204
1205-
Added function :c:func:`PyType_GetModuleByDef`, which allows accesss to
1205+
Added function :c:func:`PyType_GetModuleByDef`, which allows access to
12061206
module state when a method's defining class is not available.

Diff for: Misc/NEWS.d/3.11.0a7.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -1173,7 +1173,7 @@ implemented.
11731173
.. section: Library
11741174
11751175
Add an Barrier object in synchronization primitives of *asyncio* Lib in
1176-
order to be consistant with Barrier from *threading* and *multiprocessing*
1176+
order to be consistent with Barrier from *threading* and *multiprocessing*
11771177
libs*
11781178

11791179
..
@@ -1211,7 +1211,7 @@ Update PEP URLs to :pep:`676`'s new canonical form.
12111211
.. nonce: 4Dn48U
12121212
.. section: Documentation
12131213
1214-
Clarified the old Python versions compatiblity note of
1214+
Clarified the old Python versions compatibility note of
12151215
:func:`binascii.crc32` / :func:`zlib.adler32` / :func:`zlib.crc32`
12161216
functions.
12171217

Diff for: Misc/NEWS.d/3.8.0a1.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -6282,7 +6282,7 @@ Add documentation about the new command line interface of the gzip module.
62826282
.. nonce: YO9CYm
62836283
.. section: Documentation
62846284
6285-
chm document displays non-ASCII charaters properly on some MBCS Windows
6285+
chm document displays non-ASCII characters properly on some MBCS Windows
62866286
systems.
62876287

62886288
..

Diff for: Misc/NEWS.d/3.8.0a4.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ exceptions.
600600
.. nonce: 9sjd38
601601
.. section: Library
602602
603-
Add time module support and fix test_time faiures for VxWorks.
603+
Add time module support and fix test_time failures for VxWorks.
604604

605605
..
606606
@@ -843,7 +843,7 @@ Using the code of the ``Tools/scripts/serve.py`` script as an example in the
843843
.. nonce: nF1pP1
844844
.. section: Documentation
845845
846-
Added Documention for PyInterpreterState_Main().
846+
Added Documentation for PyInterpreterState_Main().
847847

848848
..
849849

Diff for: Misc/NEWS.d/3.9.0a1.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1396,7 +1396,7 @@ way to :func:`email.message.get`.
13961396
.. section: Library
13971397
13981398
Deprecated the ``split()`` method in :class:`_tkinter.TkappType` in favour
1399-
of the ``splitlist()`` method which has more consistent and predicable
1399+
of the ``splitlist()`` method which has more consistent and predictable
14001400
behavior.
14011401

14021402
..

Diff for: Misc/NEWS.d/3.9.0a6.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,7 @@ script is killed by signal 11, it now logs: "CGI script exit code -11."
635635
.. section: Library
636636
637637
Improve the error message when triying to import a module using :mod:`runpy`
638-
and incorrently use the ".py" extension at the end of the module name. Patch
638+
and incorrectly use the ".py" extension at the end of the module name. Patch
639639
by Pablo Galindo.
640640

641641
..

0 commit comments

Comments
 (0)