mirror of https://github.com/python/cpython
Python 3.13.0a5
This commit is contained in:
parent
f6e7a6ce65
commit
076d169ebb
|
@ -20,10 +20,10 @@
|
|||
#define PY_MINOR_VERSION 13
|
||||
#define PY_MICRO_VERSION 0
|
||||
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
|
||||
#define PY_RELEASE_SERIAL 4
|
||||
#define PY_RELEASE_SERIAL 5
|
||||
|
||||
/* Version as a string */
|
||||
#define PY_VERSION "3.13.0a4+"
|
||||
#define PY_VERSION "3.13.0a5"
|
||||
/*--end constants--*/
|
||||
|
||||
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Autogenerated by Sphinx on Thu Feb 15 14:30:52 2024
|
||||
# Autogenerated by Sphinx on Tue Mar 12 18:35:04 2024
|
||||
# as part of the release process.
|
||||
topics = {'assert': 'The "assert" statement\n'
|
||||
'**********************\n'
|
||||
|
@ -4724,7 +4724,7 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'reflection,\n'
|
||||
' and "__eq__()" and "__ne__()" are their own reflection. '
|
||||
'If the\n'
|
||||
' operands are of different types, and right operand’s '
|
||||
' operands are of different types, and the right operand’s '
|
||||
'type is a\n'
|
||||
' direct or indirect subclass of the left operand’s type, '
|
||||
'the\n'
|
||||
|
@ -4734,6 +4734,11 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'is not\n'
|
||||
' considered.\n'
|
||||
'\n'
|
||||
' When no appropriate method returns any value other than\n'
|
||||
' "NotImplemented", the "==" and "!=" operators will fall '
|
||||
'back to\n'
|
||||
' "is" and "is not", respectively.\n'
|
||||
'\n'
|
||||
'object.__hash__(self)\n'
|
||||
'\n'
|
||||
' Called by built-in function "hash()" and for operations '
|
||||
|
@ -5223,15 +5228,15 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'overridden by\n'
|
||||
'the local file.\n'
|
||||
'\n'
|
||||
'Changed in version 3.11: ".pdbrc" is now read with "\'utf-8\'" '
|
||||
'encoding.\n'
|
||||
'Previously, it was read with the system locale encoding.\n'
|
||||
'\n'
|
||||
'Changed in version 3.2: ".pdbrc" can now contain commands that\n'
|
||||
'continue debugging, such as "continue" or "next". Previously, '
|
||||
'these\n'
|
||||
'commands had no effect.\n'
|
||||
'\n'
|
||||
'Changed in version 3.11: ".pdbrc" is now read with "\'utf-8\'" '
|
||||
'encoding.\n'
|
||||
'Previously, it was read with the system locale encoding.\n'
|
||||
'\n'
|
||||
'h(elp) [command]\n'
|
||||
'\n'
|
||||
' Without argument, print the list of available commands. With '
|
||||
|
@ -8756,7 +8761,7 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'"__rsub__()"\n'
|
||||
' method, "type(y).__rsub__(y, x)" is called if '
|
||||
'"type(x).__sub__(x,\n'
|
||||
' y)" returns *NotImplemented*.\n'
|
||||
' y)" returns "NotImplemented".\n'
|
||||
'\n'
|
||||
' Note that ternary "pow()" will not try calling '
|
||||
'"__rpow__()" (the\n'
|
||||
|
@ -8799,14 +8804,18 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'the result\n'
|
||||
' (which could be, but does not have to be, *self*). If a '
|
||||
'specific\n'
|
||||
' method is not defined, the augmented assignment falls '
|
||||
'back to the\n'
|
||||
' normal methods. For instance, if *x* is an instance of '
|
||||
'a class\n'
|
||||
' with an "__iadd__()" method, "x += y" is equivalent to '
|
||||
'"x =\n'
|
||||
' x.__iadd__(y)" . Otherwise, "x.__add__(y)" and '
|
||||
'"y.__radd__(x)" are\n'
|
||||
' method is not defined, or if that method returns '
|
||||
'"NotImplemented",\n'
|
||||
' the augmented assignment falls back to the normal '
|
||||
'methods. For\n'
|
||||
' instance, if *x* is an instance of a class with an '
|
||||
'"__iadd__()"\n'
|
||||
' method, "x += y" is equivalent to "x = x.__iadd__(y)" . '
|
||||
'If\n'
|
||||
' "__iadd__()" does not exist, or if "x.__iadd__(y)" '
|
||||
'returns\n'
|
||||
' "NotImplemented", "x.__add__(y)" and "y.__radd__(x)" '
|
||||
'are\n'
|
||||
' considered, as with the evaluation of "x + y". In '
|
||||
'certain\n'
|
||||
' situations, augmented assignment can result in '
|
||||
|
@ -8887,7 +8896,7 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'Every object has an identity, a type and a value. An object’s\n'
|
||||
'*identity* never changes once it has been created; you may think '
|
||||
'of it\n'
|
||||
'as the object’s address in memory. The ‘"is"’ operator compares '
|
||||
'as the object’s address in memory. The "is" operator compares '
|
||||
'the\n'
|
||||
'identity of two objects; the "id()" function returns an integer\n'
|
||||
'representing its identity.\n'
|
||||
|
@ -8952,7 +8961,7 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'Note that the use of the implementation’s tracing or debugging\n'
|
||||
'facilities may keep objects alive that would normally be '
|
||||
'collectable.\n'
|
||||
'Also note that catching an exception with a ‘"try"…"except"’ '
|
||||
'Also note that catching an exception with a "try"…"except" '
|
||||
'statement\n'
|
||||
'may keep objects alive.\n'
|
||||
'\n'
|
||||
|
@ -8967,8 +8976,9 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'release the external resource, usually a "close()" method. '
|
||||
'Programs\n'
|
||||
'are strongly recommended to explicitly close such objects. The\n'
|
||||
'‘"try"…"finally"’ statement and the ‘"with"’ statement provide\n'
|
||||
'convenient ways to do this.\n'
|
||||
'"try"…"finally" statement and the "with" statement provide '
|
||||
'convenient\n'
|
||||
'ways to do this.\n'
|
||||
'\n'
|
||||
'Some objects contain references to other objects; these are '
|
||||
'called\n'
|
||||
|
@ -9345,10 +9355,7 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'The try statement.\n'
|
||||
'\n'
|
||||
'Changed in version 3.3: "None" is now permitted as "Y" in "raise X\n'
|
||||
'from Y".\n'
|
||||
'\n'
|
||||
'New in version 3.3: The "__suppress_context__" attribute to '
|
||||
'suppress\n'
|
||||
'from Y".Added the "__suppress_context__" attribute to suppress\n'
|
||||
'automatic display of the exception context.\n'
|
||||
'\n'
|
||||
'Changed in version 3.11: If the traceback of the active exception '
|
||||
|
@ -10133,8 +10140,8 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'reflection,\n'
|
||||
' and "__eq__()" and "__ne__()" are their own reflection. '
|
||||
'If the\n'
|
||||
' operands are of different types, and right operand’s type '
|
||||
'is a\n'
|
||||
' operands are of different types, and the right operand’s '
|
||||
'type is a\n'
|
||||
' direct or indirect subclass of the left operand’s type, '
|
||||
'the\n'
|
||||
' reflected method of the right operand has priority, '
|
||||
|
@ -10143,6 +10150,11 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'is not\n'
|
||||
' considered.\n'
|
||||
'\n'
|
||||
' When no appropriate method returns any value other than\n'
|
||||
' "NotImplemented", the "==" and "!=" operators will fall '
|
||||
'back to\n'
|
||||
' "is" and "is not", respectively.\n'
|
||||
'\n'
|
||||
'object.__hash__(self)\n'
|
||||
'\n'
|
||||
' Called by built-in function "hash()" and for operations '
|
||||
|
@ -11682,7 +11694,7 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'"__rsub__()"\n'
|
||||
' method, "type(y).__rsub__(y, x)" is called if '
|
||||
'"type(x).__sub__(x,\n'
|
||||
' y)" returns *NotImplemented*.\n'
|
||||
' y)" returns "NotImplemented".\n'
|
||||
'\n'
|
||||
' Note that ternary "pow()" will not try calling '
|
||||
'"__rpow__()" (the\n'
|
||||
|
@ -11725,14 +11737,17 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'the result\n'
|
||||
' (which could be, but does not have to be, *self*). If a '
|
||||
'specific\n'
|
||||
' method is not defined, the augmented assignment falls '
|
||||
'back to the\n'
|
||||
' normal methods. For instance, if *x* is an instance of a '
|
||||
'class\n'
|
||||
' with an "__iadd__()" method, "x += y" is equivalent to "x '
|
||||
'=\n'
|
||||
' x.__iadd__(y)" . Otherwise, "x.__add__(y)" and '
|
||||
'"y.__radd__(x)" are\n'
|
||||
' method is not defined, or if that method returns '
|
||||
'"NotImplemented",\n'
|
||||
' the augmented assignment falls back to the normal '
|
||||
'methods. For\n'
|
||||
' instance, if *x* is an instance of a class with an '
|
||||
'"__iadd__()"\n'
|
||||
' method, "x += y" is equivalent to "x = x.__iadd__(y)" . '
|
||||
'If\n'
|
||||
' "__iadd__()" does not exist, or if "x.__iadd__(y)" '
|
||||
'returns\n'
|
||||
' "NotImplemented", "x.__add__(y)" and "y.__radd__(x)" are\n'
|
||||
' considered, as with the evaluation of "x + y". In '
|
||||
'certain\n'
|
||||
' situations, augmented assignment can result in unexpected '
|
||||
|
@ -13080,9 +13095,8 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'\n'
|
||||
'New in version 3.3: The "\'rb\'" prefix of raw bytes literals has '
|
||||
'been\n'
|
||||
'added as a synonym of "\'br\'".\n'
|
||||
'\n'
|
||||
'New in version 3.3: Support for the unicode legacy literal\n'
|
||||
'added as a synonym of "\'br\'".Support for the unicode legacy '
|
||||
'literal\n'
|
||||
'("u\'value\'") was reintroduced to simplify the maintenance of '
|
||||
'dual\n'
|
||||
'Python 2.x and 3.x codebases. See **PEP 414** for more '
|
||||
|
@ -14765,6 +14779,17 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'tools.\n'
|
||||
' The PEP that introduced the "co_lines()" method.\n'
|
||||
'\n'
|
||||
'codeobject.replace(**kwargs)\n'
|
||||
'\n'
|
||||
' Return a copy of the code object with new values for the '
|
||||
'specified\n'
|
||||
' fields.\n'
|
||||
'\n'
|
||||
' Code objects are also supported by the generic function\n'
|
||||
' "copy.replace()".\n'
|
||||
'\n'
|
||||
' New in version 3.8.\n'
|
||||
'\n'
|
||||
'\n'
|
||||
'Frame objects\n'
|
||||
'-------------\n'
|
||||
|
@ -16109,7 +16134,7 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'\n'
|
||||
' For sorting examples and a brief sorting tutorial, see '
|
||||
'Sorting\n'
|
||||
' HOW TO.\n'
|
||||
' Techniques.\n'
|
||||
'\n'
|
||||
' **CPython implementation detail:** While a list is being '
|
||||
'sorted,\n'
|
||||
|
@ -16324,9 +16349,8 @@ topics = {'assert': 'The "assert" statement\n'
|
|||
'objects\n'
|
||||
'based on the sequence of values they define (instead of '
|
||||
'comparing\n'
|
||||
'based on object identity).\n'
|
||||
'\n'
|
||||
'New in version 3.3: The "start", "stop" and "step" attributes.\n'
|
||||
'based on object identity).Added the "start", "stop" and "step"\n'
|
||||
'attributes.\n'
|
||||
'\n'
|
||||
'See also:\n'
|
||||
'\n'
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,2 +0,0 @@
|
|||
Makefile targets were added to support compiling an iOS-compatible framework
|
||||
build.
|
|
@ -1,2 +0,0 @@
|
|||
The install name for libPython is now correctly set for non-framework macOS
|
||||
builds.
|
|
@ -1 +0,0 @@
|
|||
Link extension modules against libpython on Android.
|
|
@ -1 +0,0 @@
|
|||
Fix building ctypes module with -DWIN32_LEAN_AND_MEAN defined
|
|
@ -1 +0,0 @@
|
|||
A testbed project was added to run the test suite on iOS.
|
|
@ -1 +0,0 @@
|
|||
Fix several Android build issues
|
|
@ -1,2 +0,0 @@
|
|||
Backport ``libb2``'s PR #42 to fix compiling CPython on 32-bit Windows
|
||||
with ``clang-cl``.
|
|
@ -1 +0,0 @@
|
|||
Change Android's :data:`sys.platform` from ``"linux"`` to ``"android"``.
|
|
@ -1 +0,0 @@
|
|||
Get WASI builds to work under wasmtime 18 w/ WASI 0.2/preview2 primitives.
|
|
@ -1,2 +0,0 @@
|
|||
Add :c:macro:`PyHASH_MODULUS`, :c:macro:`PyHASH_BITS`, :c:macro:`PyHASH_INF`
|
||||
and :c:macro:`PyHASH_IMAG` C macros. Patch by Sergey B Kirpichev.
|
|
@ -1,4 +0,0 @@
|
|||
Add again ``_PyCFunctionFastWithKeywords`` name, removed in Python 3.13
|
||||
alpha 4 by mistake. Keep the old private ``_PyCFunctionFastWithKeywords``
|
||||
name (Python 3.7) as an alias to the new public name
|
||||
``PyCFunctionFastWithKeywords`` (Python 3.13a4). Patch by Victor Stinner.
|
|
@ -1,2 +0,0 @@
|
|||
Fix incorrect resolution of mangled class variables used in assignment
|
||||
expressions in comprehensions.
|
|
@ -1 +0,0 @@
|
|||
Expose ``__name__`` attribute on property.
|
|
@ -1,8 +0,0 @@
|
|||
Improve the constructors for :mod:`ast` nodes. Arguments of list types now
|
||||
default to an empty list if omitted, and optional fields default to ``None``.
|
||||
AST nodes now have an
|
||||
``__annotations__`` attribute with the expected types of their attributes.
|
||||
Passing unrecognized extra arguments to AST nodes is deprecated and will
|
||||
become an error in Python 3.15. Omitting a required argument to an AST node
|
||||
is deprecated and will become an error in Python 3.15. Patch by Jelle
|
||||
Zijlstra.
|
|
@ -1,2 +0,0 @@
|
|||
The multiprocessing resource tracker now exits with non-zero status code if a resource
|
||||
leak was detected. It still exits with status code 0 otherwise.
|
|
@ -1 +0,0 @@
|
|||
Add ability to force alignment of :mod:`ctypes.Structure` by way of the new ``_align_`` attribute on the class.
|
|
@ -1,2 +0,0 @@
|
|||
Fix a bug that was causing the :func:`tokenize.untokenize` function to
|
||||
handle unicode named literals incorrectly. Patch by Pablo Galindo
|
|
@ -1 +0,0 @@
|
|||
Every ``PyThreadState`` now has its own ``eval_breaker``, allowing specific threads to be interrupted.
|
|
@ -1,2 +0,0 @@
|
|||
Make error message more meaningful for when :meth:`bytearray.extend` is
|
||||
called with a :class:`str` object.
|
|
@ -1,2 +0,0 @@
|
|||
Fix bug where docstring was replaced by a redundant NOP when Python is run
|
||||
with ``-OO``.
|
|
@ -1 +0,0 @@
|
|||
The regen-cases build stage now works on Windows.
|
|
@ -1 +0,0 @@
|
|||
Fix crash when calling ``next()`` on exhausted list iterators.
|
|
@ -1 +0,0 @@
|
|||
Add ``tierN`` annotation for instruction definition in interpreter DSL.
|
|
@ -1,3 +0,0 @@
|
|||
Properly calculate error ranges in the parser when raising
|
||||
:exc:`SyntaxError` exceptions caused by invalid byte sequences. Patch by
|
||||
Pablo Galindo
|
|
@ -1 +0,0 @@
|
|||
Fix possible refleak in :meth:`!object.__reduce__` internal error handling.
|
|
@ -1 +0,0 @@
|
|||
Add specialization for ``CONTAINS_OP``.
|
|
@ -1 +0,0 @@
|
|||
:class:`list` is now compatible with the implementation of :pep:`703`.
|
|
@ -1,3 +0,0 @@
|
|||
Respect the status of the garbage collector when indirect calls are made via
|
||||
:c:func:`PyErr_CheckSignals` and the evaluation breaker. Patch by Pablo
|
||||
Galindo
|
|
@ -1 +0,0 @@
|
|||
Improve import time of :mod:`uuid` on Linux.
|
|
@ -1 +0,0 @@
|
|||
Document CVE-2023-52425 of Expat <2.6.0 under "XML vulnerabilities".
|
|
@ -1,2 +0,0 @@
|
|||
On macOS show a proxy icon in the title bar of editor windows to match
|
||||
platform behaviour.
|
|
@ -1 +0,0 @@
|
|||
Add 'default' and 'version' help text for localization in argparse.
|
|
@ -1,3 +0,0 @@
|
|||
The asyncio REPL now runs :data:`sys.__interactivehook__` on startup. The
|
||||
default implementation of :data:`sys.__interactivehook__` provides
|
||||
auto-completion to the asyncio REPL. Patch contributed by Rémi Lapeyre.
|
|
@ -1,3 +0,0 @@
|
|||
Failing to pass arguments properly to :func:`functools.singledispatchmethod`
|
||||
now throws a TypeError instead of hitting an index out of bounds
|
||||
internally.
|
|
@ -1,2 +0,0 @@
|
|||
linecache: get module name from ``__spec__`` if available. This allows getting
|
||||
source code for the ``__main__`` module when a custom loader is used.
|
|
@ -1,2 +0,0 @@
|
|||
Fix :meth:`multiprocessing.connection.Listener.accept()` to accept empty bytes
|
||||
as authkey. Not accepting empty bytes as key causes it to hang indefinitely.
|
|
@ -1 +0,0 @@
|
|||
Add missing call to localization function in :mod:`argparse`.
|
|
@ -1 +0,0 @@
|
|||
Add Z85 encoding to ``base64``.
|
|
@ -1 +0,0 @@
|
|||
Fixed a bug in :class:`logging.handlers.TimedRotatingFileHandler` where multiple rotating handler instances pointing to files with the same name but different extensions would conflict and not delete the correct files.
|
|
@ -1,2 +0,0 @@
|
|||
Fix a traceback in :mod:`argparse` when all options in a mutually exclusive
|
||||
group are suppressed.
|
|
@ -1,4 +0,0 @@
|
|||
Fix :func:`io.BufferedReader.tell`, :func:`io.BufferedReader.seek`,
|
||||
:func:`_pyio.BufferedReader.tell`, :func:`io.BufferedRandom.tell`,
|
||||
:func:`io.BufferedRandom.seek` and :func:`_pyio.BufferedRandom.tell`
|
||||
being able to return negative offsets.
|
|
@ -1,2 +0,0 @@
|
|||
email: fix misfolding of comma in address-lists over multiple lines in
|
||||
combination with unicode encoding.
|
|
@ -1,2 +0,0 @@
|
|||
Update HTTPSConnection to consistently wrap IPv6 Addresses when using a
|
||||
proxy.
|
|
@ -1,2 +0,0 @@
|
|||
:func:`functools.partial`s of :func:`repr` has been improved to include the
|
||||
:term:`module` name. Patched by Furkan Onder and Anilyka Barry.
|
|
@ -1 +0,0 @@
|
|||
Add ``windows_31j`` to aliases for ``cp932`` codec
|
|
@ -1 +0,0 @@
|
|||
Fix ArgumentParser inconsistent with parse_known_args.
|
|
@ -1 +0,0 @@
|
|||
Add :data:`socket.SO_BINDTOIFINDEX` constant.
|
|
@ -1 +0,0 @@
|
|||
:meth:`Profile.print_stats` has been improved to accept multiple sort arguments. Patched by Chiu-Hsiang Hsu and Furkan Onder.
|
|
@ -1,3 +0,0 @@
|
|||
Add option for *non-shallow* comparisons to :class:`filecmp.dircmp` like
|
||||
:func:`filecmp.cmp`. Original patch by Steven Ward. Enhanced by
|
||||
Tobias Rautenkranz
|
|
@ -1,3 +0,0 @@
|
|||
Fix incorrect output of ``help(x)`` where ``x`` is a :keyword:`lambda`
|
||||
function, which has an ``__annotations__`` dictionary attribute with a
|
||||
``"return"`` key.
|
|
@ -1,4 +0,0 @@
|
|||
Raise :exc:`configparser.ParsingError` from :meth:`~configparser.ConfigParser.read`
|
||||
and :meth:`~configparser.ConfigParser.read_file` methods of
|
||||
:class:`configparser.ConfigParser` if a key without a corresponding value
|
||||
is continued (that is, followed by an indented line).
|
|
@ -1 +0,0 @@
|
|||
Make .pdbrc and -c work with any valid pdb commands.
|
|
@ -1,2 +0,0 @@
|
|||
Fix :meth:`importlib.resources.simple.ResourceHandle.open` for text mode,
|
||||
added missed ``stream`` argument.
|
|
@ -1,2 +0,0 @@
|
|||
Allow creating :ref:`union of types<types-union>` for
|
||||
:class:`typing.Annotated` with unhashable metadata.
|
|
@ -1,2 +0,0 @@
|
|||
Add :data:`ssl.VERIFY_X509_PARTIAL_CHAIN` and :data:`VERIFY_X509_STRICT`
|
||||
to the default SSL context created with :func:`ssl.create_default_context`.
|
|
@ -1,4 +0,0 @@
|
|||
Fix bug where :meth:`pathlib.PurePath.with_stem` converted a non-empty path
|
||||
suffix to a stem when given an empty *stem* argument. It now raises
|
||||
:exc:`ValueError`, just like :meth:`pathlib.PurePath.with_suffix` does when
|
||||
called on a path with an empty stem, given a non-empty *suffix* argument.
|
|
@ -1,5 +0,0 @@
|
|||
:func:`posixpath.commonpath()` now raises a :exc:`ValueError` exception when
|
||||
passed an empty iterable. Previously, :exc:`IndexError` was raised.
|
||||
|
||||
:func:`posixpath.commonpath()` now raises a :exc:`TypeError` exception when
|
||||
passed ``None``. Previously, :exc:`ValueError` was raised.
|
|
@ -1,3 +0,0 @@
|
|||
Protect modules loaded with :class:`importlib.util.LazyLoader` from race
|
||||
conditions when multiple threads try to access attributes before the loading
|
||||
is complete.
|
|
@ -1,3 +0,0 @@
|
|||
:meth:`DatagramTransport.sendto` will now send zero-length datagrams if
|
||||
called with an empty bytes object. The transport flow control also now
|
||||
accounts for the datagram header when calculating the buffer size.
|
|
@ -1,2 +0,0 @@
|
|||
``urllib.request`` no longer resolves the hostname before checking it
|
||||
against the system's proxy bypass list on macOS and Windows.
|
|
@ -1,5 +0,0 @@
|
|||
Added DeprecationWarning when accessing the tarfile attribute of TarInfo
|
||||
objects. The attribute is never used internally and is only attached to
|
||||
TarInfos when the tarfile is opened in write-mode, not read-mode. The
|
||||
attribute creates an unnecessary reference cycle which may cause
|
||||
corruption when not closing the handle after writing a tarfile.
|
|
@ -1,2 +0,0 @@
|
|||
:mod:`pydoc` no longer skips global functions implemented as builtin methods,
|
||||
such as :class:`~type.MethodDescriptorType` and :class:`~type.WrapperDescriptorType`.
|
|
@ -1 +0,0 @@
|
|||
Isolate :mod:`_lsprof` (apply :pep:`687`).
|
|
@ -1,4 +0,0 @@
|
|||
Support callables with the ``__call__()`` method and types with
|
||||
``__new__()`` and ``__init__()`` methods set to class methods, static
|
||||
methods, bound methods, partial functions, and other types of methods and
|
||||
descriptors in :meth:`inspect.Signature.from_callable`.
|
|
@ -1,3 +0,0 @@
|
|||
Fix :func:`inspect.unwrap` for types with the ``__wrapper__`` data
|
||||
descriptor. Fix :meth:`inspect.Signature.from_callable` for builtins
|
||||
:func:`classmethod` and :func:`staticmethod`.
|
|
@ -1,2 +0,0 @@
|
|||
Refactor :class:`dis.ArgResolver` to make it possible to subclass and change
|
||||
the way jump args are interpreted.
|
|
@ -1,3 +0,0 @@
|
|||
Fix improper decreasing the reference count for ``None`` argument in
|
||||
:class:`property` methods :meth:`~property.getter`, :meth:`~property.setter`
|
||||
and :meth:`~property.deleter`.
|
|
@ -1,2 +0,0 @@
|
|||
Fix a bug in :meth:`asyncio.BaseEventLoop.shutdown_default_executor` to
|
||||
ensure the timeout passed to the coroutine behaves as expected.
|
|
@ -1,2 +0,0 @@
|
|||
Fix an issue where an abandoned :class:`StreamWriter` would not be garbage
|
||||
collected.
|
|
@ -1,2 +0,0 @@
|
|||
Stop logging potentially sensitive callback arguments in :mod:`asyncio`
|
||||
unless debug mode is active.
|
|
@ -1 +0,0 @@
|
|||
Fixed :func:`ast.unparse` to handle format_spec with ``"``, ``'`` or ``\\``. Patched by Frank Hoffmann.
|
|
@ -1,4 +0,0 @@
|
|||
Restore support of space delimiter with ``skipinitialspace=True`` in
|
||||
:mod:`csv`. :func:`csv.writer()` now quotes empty fields if delimiter is a
|
||||
space and skipinitialspace is true and raises exception if quoting is not
|
||||
possible.
|
|
@ -1,2 +0,0 @@
|
|||
:func:`csv.writer` now always quotes or escapes ``'\r'`` and ``'\n'``,
|
||||
regardless of *lineterminator* value.
|
|
@ -1,3 +0,0 @@
|
|||
:mod:`urllib.parse` functions :func:`~urllib.parse.parse_qs` and
|
||||
:func:`~urllib.parse.parse_qsl` now support bytes arguments containing raw
|
||||
and percent-encoded non-ASCII data.
|
|
@ -1,4 +0,0 @@
|
|||
Improve algorithm for computing which rolled-over log files to delete in
|
||||
:class:`logging.TimedRotatingFileHandler`. It is now reliable for handlers
|
||||
without ``namer`` and with arbitrary deterministic ``namer`` that leaves the
|
||||
datetime part in the file name unmodified.
|
|
@ -1,4 +0,0 @@
|
|||
On WASI, the :mod:`time` module no longer get process time using ``times()``
|
||||
or ``CLOCK_PROCESS_CPUTIME_ID``, system API is that is unreliable and is
|
||||
likely to be removed from WASI. The affected clock functions fall back to
|
||||
calling ``clock()``.
|
|
@ -1 +0,0 @@
|
|||
Add kernel density estimation to the statistics module.
|
|
@ -1,2 +0,0 @@
|
|||
Fix silent truncation of the name with an embedded null character in
|
||||
:class:`multiprocessing.shared_memory.SharedMemory`.
|
|
@ -1,4 +0,0 @@
|
|||
Fix issue where :func:`ast.parse` would incorrectly flag conditional context
|
||||
managers (such as ``with (x() if y else z()): ...``) as invalid syntax if
|
||||
``feature_version=(3, 8)`` was passed. This reverts changes to the
|
||||
grammar made as part of gh-94949.
|
|
@ -1 +0,0 @@
|
|||
Fixed :func:`unittest.mock.create_autospec` to pass the call through to the wrapped object to return the real result.
|
|
@ -1,2 +0,0 @@
|
|||
Use the ``XDG_CURRENT_DESKTOP`` environment variable in :mod:`webbrowser` to check desktop.
|
||||
Prefer it to the deprecated ``GNOME_DESKTOP_SESSION_ID`` for GNOME detection.
|
|
@ -1,2 +0,0 @@
|
|||
[Enum] Improve error message when calling super().__new__() in custom
|
||||
__new__.
|
|
@ -1 +0,0 @@
|
|||
[Enum] fix by-value calls when second value is falsey; e.g. Cardinal(1, 0)
|
|
@ -1 +0,0 @@
|
|||
Improve the ``less`` prompt in :mod:`pydoc`.
|
|
@ -1 +0,0 @@
|
|||
Add support for nested typing special forms like Final[ClassVar[int]].
|
|
@ -1,4 +0,0 @@
|
|||
Fix UnicodeEncodeError in :meth:`email.Message.as_string` that results when
|
||||
a message that claims to be in the ascii character set actually has non-ascii
|
||||
characters. Non-ascii characters are now replaced with the U+FFFD replacement
|
||||
character, like in the ``replace`` error handler.
|
|
@ -1 +0,0 @@
|
|||
Set ``__main__.__spec__`` to ``None`` when running a script with :mod:`pdb`
|
|
@ -1,6 +0,0 @@
|
|||
Fix the computation of the next rollover time in the
|
||||
:class:`logging.TimedRotatingFileHandler` handler. :meth:`!computeRollover`
|
||||
now always returns a timestamp larger than the specified time and works
|
||||
correctly during the DST change. :meth:`!doRollover` no longer overwrite the
|
||||
already rolled over file, saving from data loss when run at midnight or
|
||||
during repeated time at the DST change.
|
|
@ -1,4 +0,0 @@
|
|||
Disable preadv(), readv(), pwritev(), and writev() on WASI.
|
||||
|
||||
Under wasmtime for WASI 0.2, these functions don't pass test_posix
|
||||
(https://github.com/bytecodealliance/wasmtime/issues/7830).
|
|
@ -1 +0,0 @@
|
|||
When ``asyncio.TaskGroup.create_task`` is called on an inactive ``asyncio.TaskGroup``, the given coroutine will be closed (which prevents a ``RuntimeWarning``).
|
|
@ -1,2 +0,0 @@
|
|||
:mod:`typing`: raise :exc:`SyntaxError` instead of :exc:`AttributeError`
|
||||
on forward references as empty strings.
|
|
@ -1,2 +0,0 @@
|
|||
:mod:`typing`: implement :pep:`705` which adds :data:`typing.ReadOnly`
|
||||
support to :class:`typing.TypedDict`.
|
|
@ -1,3 +0,0 @@
|
|||
Fix a race in pydoc ``_start_server``, eliminating a window in which
|
||||
``_start_server`` can return a thread that is "serving" but without a
|
||||
``docserver`` set.
|
|
@ -1,3 +0,0 @@
|
|||
:func:`platform.java_ver` is deprecated and will be removed in 3.15.
|
||||
It was largely untested, had a confusing API,
|
||||
and was only useful for Jython support.
|
|
@ -1 +0,0 @@
|
|||
Fix :func:`repr` for global :class:`~enum.Flag` members.
|
|
@ -1,4 +0,0 @@
|
|||
:meth:`ssl.SSLContext.cert_store_stats` and
|
||||
:meth:`ssl.SSLContext.get_ca_certs` now correctly lock access to the
|
||||
certificate store, when the :class:`ssl.SSLContext` is shared across
|
||||
multiple threads.
|
|
@ -1,8 +0,0 @@
|
|||
Allow controlling Expat >=2.6.0 reparse deferral (CVE-2023-52425) by adding
|
||||
five new methods:
|
||||
|
||||
* :meth:`xml.etree.ElementTree.XMLParser.flush`
|
||||
* :meth:`xml.etree.ElementTree.XMLPullParser.flush`
|
||||
* :meth:`xml.parsers.expat.xmlparser.GetReparseDeferralEnabled`
|
||||
* :meth:`xml.parsers.expat.xmlparser.SetReparseDeferralEnabled`
|
||||
* :meth:`xml.sax.expatreader.ExpatParser.flush`
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue