@@ -563,7 +563,7 @@ on deallocation.
563
563
564
564
Fix :meth: `multiprocessing.synchronize.SemLock.__setstate__ ` to properly
565
565
initialize :attr: `multiprocessing.synchronize.SemLock._is_fork_ctx `. This
566
- fixes a regression when passing a SemLock accross nested processes.
566
+ fixes a regression when passing a SemLock across nested processes.
567
567
568
568
Rename :attr: `multiprocessing.synchronize.SemLock.is_fork_ctx ` to
569
569
:attr: `multiprocessing.synchronize.SemLock._is_fork_ctx ` to avoid exposing
@@ -708,7 +708,7 @@ Fixes crash when tracing in recursive calls to Python classes.
708
708
.. section: Core and Builtins
709
709
710
710
Remove the ``_PyCFrame `` struct, moving the pointer to the current
711
- intepreter frame back to the threadstate, as it was for 3.10 and earlier.
711
+ interpreter frame back to the threadstate, as it was for 3.10 and earlier.
712
712
The ``_PyCFrame `` existed as a performance optimization for tracing. Since
713
713
PEP 669 has been implemented, this optimization no longer applies.
714
714
@@ -926,7 +926,7 @@ Isolate :mod:`!_decimal` (apply :pep:`687`). Patch by Charlie Zhao.
926
926
927
927
Add the exception as the third argument to ``PY_UNIND `` callbacks in
928
928
``sys.monitoring ``. This makes the ``PY_UNWIND `` callback consistent with
929
- the other exception hanlding callbacks.
929
+ the other exception handling callbacks.
930
930
931
931
..
932
932
@@ -935,7 +935,7 @@ the other exception hanlding callbacks.
935
935
.. nonce: DdEwV8
936
936
.. section: Core and Builtins
937
937
938
- Raise a ``ValueError `` when a monitoring callback funtion returns
938
+ Raise a ``ValueError `` when a monitoring callback function returns
939
939
``DISABLE `` for events that cannot be disabled locally.
940
940
941
941
..
@@ -1006,7 +1006,7 @@ Add :meth:`dbm.gnu.gdbm.clear` to :mod:`dbm.gnu`. Patch By Donghee Na.
1006
1006
.. section: Core and Builtins
1007
1007
1008
1008
The ASYNC and AWAIT tokens are removed from the Grammar, which removes the
1009
- posibility of making ``async `` and ``await `` soft keywords when using
1009
+ possibility of making ``async `` and ``await `` soft keywords when using
1010
1010
``feature_version<7 `` in :func: `ast.parse `.
1011
1011
1012
1012
..
@@ -1028,7 +1028,7 @@ the call is not a classmethod.
1028
1028
.. nonce: DdqHFg
1029
1029
.. section: Core and Builtins
1030
1030
1031
- Python no longer crashes due an infrequent race when initialzing
1031
+ Python no longer crashes due an infrequent race when initializing
1032
1032
per-interpreter interned strings. The crash would manifest when the
1033
1033
interpreter was finalized.
1034
1034
@@ -1922,7 +1922,7 @@ objects
1922
1922
.. nonce: RDGe8-
1923
1923
.. section: Library
1924
1924
1925
- Deprecation warning about non-integer number in :mod: `gettext ` now alwais
1925
+ Deprecation warning about non-integer number in :mod: `gettext ` now always
1926
1926
refers to the line in the user code where gettext function or method is
1927
1927
used. Previously it could refer to a line in ``gettext `` code.
1928
1928
@@ -2047,7 +2047,7 @@ point.
2047
2047
.. nonce: fECxTj
2048
2048
.. section: Library
2049
2049
2050
- On Windows, multiprocessing ``Popen.terminate() `` now catchs
2050
+ On Windows, multiprocessing ``Popen.terminate() `` now catches
2051
2051
:exc: `PermissionError ` and get the process exit code. If the process is
2052
2052
still running, raise again the :exc: `PermissionError `. Otherwise, the
2053
2053
process terminated as expected: store its exit code. Patch by Victor
@@ -2857,7 +2857,7 @@ Seems that in some conditions, OpenSSL will return ``SSL_ERROR_SYSCALL``
2857
2857
instead of ``SSL_ERROR_SSL `` when a certification verification has failed,
2858
2858
but the error parameters will still contain ``ERR_LIB_SSL `` and
2859
2859
``SSL_R_CERTIFICATE_VERIFY_FAILED ``. We are now detecting this situation and
2860
- raising the appropiate ``ssl.SSLCertVerificationError ``. Patch by Pablo
2860
+ raising the appropriate ``ssl.SSLCertVerificationError ``. Patch by Pablo
2861
2861
Galindo
2862
2862
2863
2863
..
@@ -2979,7 +2979,7 @@ method. Patch by James Cave.
2979
2979
.. section: Library
2980
2980
2981
2981
Fix overflow on 32-bit systems with :mod: `asyncio ` :func: `os.sendfile `
2982
- implemention .
2982
+ implementation .
2983
2983
2984
2984
..
2985
2985
@@ -3251,7 +3251,7 @@ Eliseev.
3251
3251
.. nonce: NN35-U
3252
3252
.. section: Library
3253
3253
3254
- Optimize ``(?!) `` (pattern which alwais fails) in regular expressions.
3254
+ Optimize ``(?!) `` (pattern which always fails) in regular expressions.
3255
3255
3256
3256
..
3257
3257
@@ -3495,7 +3495,7 @@ star imports.
3495
3495
.. nonce: TJEUkd
3496
3496
.. section: Library
3497
3497
3498
- Zipapp will now skip over apending an archive to itself.
3498
+ Zipapp will now skip over appending an archive to itself.
3499
3499
3500
3500
..
3501
3501
@@ -4564,7 +4564,7 @@ Deprecate passing any arguments to :func:`threading.RLock`.
4564
4564
.. nonce: o5Zb0t
4565
4565
.. section: Library
4566
4566
4567
- Refactored ``zipfile._strip_extra `` to use higher level abstactions for
4567
+ Refactored ``zipfile._strip_extra `` to use higher level abstractions for
4568
4568
extras instead of a heavy-state loop.
4569
4569
4570
4570
..
@@ -5014,7 +5014,7 @@ by Victor Stinner.
5014
5014
5015
5015
Fix test_timeout() of test_concurrent_futures.test_wait. Remove the future
5016
5016
which may or may not complete depending if it takes longer than the timeout
5017
- ot not. Keep the second future which does not complete before wait()
5017
+ or not. Keep the second future which does not complete before wait()
5018
5018
timeout. Patch by Victor Stinner.
5019
5019
5020
5020
..
@@ -5104,7 +5104,7 @@ Victor Stinner.
5104
5104
5105
5105
regrtest: Add ``--fast-ci `` and ``--slow-ci `` options. ``--fast-ci `` uses a
5106
5106
default timeout of 10 minutes and ``-u all,-cpu `` (skip slowest tests).
5107
- ``--slow-ci `` uses a default timeout of 20 minues and ``-u all `` (run all
5107
+ ``--slow-ci `` uses a default timeout of 20 minutes and ``-u all `` (run all
5108
5108
tests). Patch by Victor Stinner.
5109
5109
5110
5110
..
@@ -5232,7 +5232,7 @@ and ``sysctl net.inet.udp.blackhole=1``). Patch by Victor Stinner.
5232
5232
5233
5233
Skip ``test_gdb `` if gdb is unable to retrieve Python frame objects: if a
5234
5234
frame is ``<optimized out> ``. When Python is built with "clang -Og", gdb can
5235
- fail to retrive the *frame * parameter of ``_PyEval_EvalFrameDefault() ``. In
5235
+ fail to retrieve the *frame * parameter of ``_PyEval_EvalFrameDefault() ``. In
5236
5236
this case, tests like ``py_bt() `` are likely to fail. Without getting access
5237
5237
to Python frames, ``python-gdb.py `` is mostly clueless on retrieving the
5238
5238
Python traceback. Moreover, ``test_gdb `` is no longer skipped on macOS if
0 commit comments