summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/3.11.0a6.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/NEWS.d/3.11.0a6.rst')
-rw-r--r--Misc/NEWS.d/3.11.0a6.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Misc/NEWS.d/3.11.0a6.rst b/Misc/NEWS.d/3.11.0a6.rst
index 2fdceef..66ffa4f 100644
--- a/Misc/NEWS.d/3.11.0a6.rst
+++ b/Misc/NEWS.d/3.11.0a6.rst
@@ -1088,7 +1088,7 @@ Patch by Kumar Aditya.
Fix wasm32-emscripten test failures and platform issues. - Disable syscalls
that are not supported or don't work, e.g. wait, getrusage, prlimit,
-mkfifo, mknod, setres[gu]id, setgroups. - Use fd_count to cound open fds. -
+mkfifo, mknod, setres[gu]id, setgroups. - Use fd_count to count open fds. -
Add more checks for subprocess and fork. - Add workarounds for missing
_multiprocessing and failing socket.accept(). - Enable bzip2. - Disable
large file support. - Disable signal.alarm.
@@ -1162,7 +1162,7 @@ Terry Jan Reedy.
.. section: C API
Python's public headers no longer import ``<stdbool.h>``, leaving code that
-embedd/extends Python free to define ``bool``, ``true`` and ``false``.
+embeds/extends Python free to define ``bool``, ``true`` and ``false``.
..
@@ -1182,7 +1182,7 @@ internal C API ``pycore_frame.h`` header file. Patch by Victor Stinner.
.. section: C API
Rename ``Include/buffer.h`` header file to ``Include/pybuffer.h`` to avoid
-conflits with projects having an existing ``buffer.h`` header file. Patch by
+conflicts with projects having an existing ``buffer.h`` header file. Patch by
Victor Stinner.
..
@@ -1202,5 +1202,5 @@ API). Patch by Victor Stinner.
.. nonce: __ZdpH
.. section: C API
-Added function :c:func:`PyType_GetModuleByDef`, which allows accesss to
+Added function :c:func:`PyType_GetModuleByDef`, which allows access to
module state when a method's defining class is not available.