2022-03-26 23:48:52 +01:00
|
|
|
---
|
|
|
|
Doc/using/configure.rst | 3 ---
|
|
|
|
Misc/NEWS | 2 +-
|
|
|
|
2 files changed, 1 insertion(+), 4 deletions(-)
|
|
|
|
|
|
|
|
--- a/Doc/using/configure.rst
|
|
|
|
+++ b/Doc/using/configure.rst
|
|
|
|
@@ -42,7 +42,6 @@ General Options
|
|
|
|
|
|
|
|
See :data:`sys.int_info.bits_per_digit <sys.int_info>`.
|
|
|
|
|
|
|
|
-.. cmdoption:: --with-cxx-main
|
|
|
|
.. cmdoption:: --with-cxx-main=COMPILER
|
|
|
|
|
|
|
|
Compile the Python ``main()`` function and link Python executable with C++
|
|
|
|
@@ -457,13 +456,11 @@ macOS Options
|
|
|
|
|
|
|
|
See ``Mac/README.rst``.
|
|
|
|
|
|
|
|
-.. cmdoption:: --enable-universalsdk
|
|
|
|
.. cmdoption:: --enable-universalsdk=SDKDIR
|
|
|
|
|
|
|
|
Create a universal binary build. *SDKDIR* specifies which macOS SDK should
|
|
|
|
be used to perform the build (default is no).
|
|
|
|
|
|
|
|
-.. cmdoption:: --enable-framework
|
|
|
|
.. cmdoption:: --enable-framework=INSTALLDIR
|
|
|
|
|
|
|
|
Create a Python.framework rather than a traditional Unix install. Optional
|
|
|
|
--- a/Misc/NEWS
|
|
|
|
+++ b/Misc/NEWS
|
- Update to 3.10.4:
- bpo-46968: Check for the existence of the “sys/auxv.h” header
in faulthandler to avoid compilation problems in systems
where this header doesn’t exist. Patch by Pablo Galindo
- bpo-23691: Protect the re.finditer() iterator from
re-entering.
- bpo-42369: Fix thread safety of zipfile._SharedFile.tell() to
avoid a “zipfile.BadZipFile: Bad CRC-32 for file” exception
when reading a ZipFile from multiple threads.
- bpo-38256: Fix binascii.crc32() when it is compiled to use
zlib’c crc32 to work properly on inputs 4+GiB in length
instead of returning the wrong result. The workaround prior
to this was to always feed the function data in increments
smaller than 4GiB or to just call the zlib module function.
- bpo-39394: A warning about inline flags not at the start of
the regular expression now contains the position of the flag.
- bpo-47061: Deprecate the various modules listed by PEP 594:
- aifc, asynchat, asyncore, audioop, cgi, cgitb, chunk, crypt,
imghdr, msilib, nntplib, nis, ossaudiodev, pipes, smtpd,
sndhdr, spwd, sunau, telnetlib, uu, xdrlib
- bpo-2604: Fix bug where doctests using globals would fail
when run multiple times.
- bpo-45997: Fix asyncio.Semaphore re-aquiring FIFO order.
- bpo-47022: The asynchat, asyncore and smtpd modules have been
deprecated since at least Python 3.6. Their documentation and
deprecation warnings and have now been updated to note they
will removed in Python 3.12 (PEP 594).
- bpo-46421: Fix a unittest issue where if the command was
invoked as python -m unittest and the filename(s) began with
a dot (.), a ValueError is returned.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:Factory/python310?expand=0&rev=34
2022-03-26 23:57:32 +01:00
|
|
|
@@ -2038,7 +2038,7 @@ C API
|
2022-03-26 23:48:52 +01:00
|
|
|
-----
|
|
|
|
|
|
|
|
- bpo-43795: The list in :ref:`stable-abi-list` now shows the public name
|
|
|
|
- :c:struct:`PyFrameObject` rather than ``_frame``. The non-existing entry
|
|
|
|
+ :c:type:`PyFrameObject` rather than ``_frame``. The non-existing entry
|
|
|
|
``_node`` no longer appears in the list.
|
|
|
|
|
|
|
|
- bpo-44378: :c:func:`Py_IS_TYPE` no longer uses :c:func:`Py_TYPE` to avoid
|