pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/lang python39: updated to 3.9.7



details:   https://anonhg.NetBSD.org/pkgsrc/rev/db9a94ff0fad
branches:  trunk
changeset: 457815:db9a94ff0fad
user:      adam <adam%pkgsrc.org@localhost>
date:      Wed Sep 01 13:53:58 2021 +0000

description:
python39: updated to 3.9.7

Python 3.9.7 final

Security

bpo-42278: Replaced usage of tempfile.mktemp() with TemporaryDirectory to avoid a potential race condition.
bpo-41180: Add auditing events to the marshal module, and stop raising code.__init__ events for every unmarshalled code object. Directly instantiated code objects will continue to raise an event, and 
audit event handlers should inspect or collect the raw marshal data. This reduces a significant performance overhead when loading from .pyc files.
bpo-44394: Update the vendored copy of libexpat to 2.4.1 (from 2.2.8) to get the fix for the CVE-2013-0340 “Billion Laughs” vulnerability. This copy is most used on Windows and macOS.
bpo-43124: Made the internal putcmd function in smtplib sanitize input for presence of \r and \n characters to avoid (unlikely) command injection.
Core and Builtins
bpo-45018: Fixed pickling of range iterators that iterated for over 2**32 times.
bpo-44962: Fix a race in WeakKeyDictionary, WeakValueDictionary and WeakSet when two threads attempt to commit the last pending removal. This fixes asyncio.create_task and fixes a data loss in 
asyncio.run where shutdown_asyncgens is not run
bpo-44954: Fixed a corner case bug where the result of float.fromhex('0x.8p-1074') was rounded the wrong way.
bpo-44947: Refine the syntax error for trailing commas in import statements. Patch by Pablo Galindo.
bpo-44698: Restore behaviour of complex exponentiation with integer-valued exponent of type float or complex.
bpo-44885: Correct the ast locations of f-strings with format specs and repeated expressions. Patch by Pablo Galindo
bpo-44872: Use new trashcan macros (Py_TRASHCAN_BEGIN/END) in frameobject.c instead of the old ones (Py_TRASHCAN_SAFE_BEGIN/END).
bpo-33930: Fix segmentation fault with deep recursion when cleaning method objects. Patch by Augusto Goulart and Pablo Galindo.
bpo-25782: Fix bug where PyErr_SetObject hangs when the current exception has a cycle in its context chain.
bpo-44856: Fix reference leaks in the error paths of update_bases() and __build_class__. Patch by Pablo Galindo.
bpo-44698: Fix undefined behaviour in complex object exponentiation.
bpo-44562: Remove uses of PyObject_GC_Del() in error path when initializing types.GenericAlias.
bpo-44523: Remove the pass-through for hash() of weakref.proxy objects to prevent unintended consequences when the original referred object dies while the proxy is part of a hashable object. Patch by 
Pablo Galindo.
bpo-44472: Fix ltrace functionality when exceptions are raised. Patch by Pablo Galindo
bpo-44184: Fix a crash at Python exit when a deallocator function removes the last strong reference to a heap type. Patch by Victor Stinner.
bpo-39091: Fix crash when using passing a non-exception to a generator’s throw() method. Patch by Noah Oxer

Library

bpo-41620: run() now always return a TestResult instance. Previously it returned None if the test class or method was decorated with a skipping decorator.
bpo-43913: Fix bugs in cleaning up classes and modules in unittest:

Functions registered with addModuleCleanup() were not called unless the user defines tearDownModule() in their test module.
Functions registered with addClassCleanup() were not called if tearDownClass is set to None.
Buffering in TestResult did not work with functions registered with addClassCleanup() and addModuleCleanup().
Errors in functions registered with addClassCleanup() and addModuleCleanup() were not handled correctly in buffered and debug modes.
Errors in setUpModule() and functions registered with addModuleCleanup() were reported in wrong order.
And several lesser bugs.
bpo-45001: Made email date parsing more robust against malformed input, namely a whitespace-only Date: header. Patch by Wouter Bolsterlee.
bpo-44449: Fix a crash in the signal handler of the faulthandler module: no longer modify the reference count of frame objects. Patch by Victor Stinner.
bpo-44955: Method stopTestRun() is now always called in pair with method startTestRun() for TestResult objects implicitly created in run(). Previously it was not called for test methods and classes 
decorated with a skipping decorator.
bpo-38956: argparse.BooleanOptionalAction’s default value is no longer printed twice when used with argparse.ArgumentDefaultsHelpFormatter.
bpo-44581: Upgrade bundled pip to 21.2.3 and setuptools to 57.4.0
bpo-44849: Fix the os.set_inheritable() function on FreeBSD 14 for file descriptor opened with the O_PATH flag: ignore the EBADF error on ioctl(), fallback on the fcntl() implementation. Patch by 
Victor Stinner.
bpo-44605: The @functools.total_ordering() decorator now works with metaclasses.
bpo-44822: sqlite3 user-defined functions and aggregators returning strings with embedded NUL characters are no longer truncated. Patch by Erlend E. Aasland.
bpo-44815: Always show loop= arg deprecations in asyncio.gather() and asyncio.sleep()
bpo-44806: Non-protocol subclasses of typing.Protocol ignore now the __init__ method inherited from protocol base classes.
bpo-44667: The tokenize.tokenize() doesn’t incorrectly generate a NEWLINE token if the source doesn’t end with a new line character but the last line is a comment, as the function is already 
generating a NL token. Patch by Pablo Galindo
bpo-42853: Fix http.client.HTTPSConnection fails to download >2GiB data.
bpo-44752: rcompleter does not call getattr() on property objects to avoid the side-effect of evaluating the corresponding method.
bpo-44720: weakref.proxy objects referencing non-iterators now raise TypeError rather than dereferencing the null tp_iternext slot and crashing.
bpo-44704: The implementation of collections.abc.Set._hash() now matches that of frozenset.__hash__().
bpo-44666: Fixed issue in compileall.compile_file() when sys.stdout is redirected. Patch by Stefan Hölzl.
bpo-40897: Give priority to using the current class constructor in inspect.signature(). Patch by Weipeng Hong.
bpo-44608: Fix memory leak in _tkinter._flatten() if it is called with a sequence or set, but not list or tuple.
bpo-41928: Update shutil.copyfile() to raise FileNotFoundError instead of confusing IsADirectoryError when a path ending with a os.path.sep does not exist; shutil.copy() and shutil.copy2() are also 
affected.
bpo-44566: handle StopIteration subclass raised from @contextlib.contextmanager generator
bpo-44558: Make the implementation consistency of indexOf() between C and Python versions. Patch by Dong-hee Na.
bpo-41249: Fixes TypedDict to work with typing.get_type_hints() and postponed evaluation of annotations across modules.
bpo-44461: Fix bug with pdb’s handling of import error due to a package which does not have a __main__ module
bpo-42892: Fixed an exception thrown while parsing a malformed multipart email by email.message.EmailMessage.
bpo-27827: pathlib.PureWindowsPath.is_reserved() now identifies a greater range of reserved filenames, including those with trailing spaces or colons.
bpo-34266: Handle exceptions from parsing the arg of pdb’s run/restart command.
bpo-27334: The sqlite3 context manager now performs a rollback (thus releasing the database lock) if commit failed. Patch by Luca Citi and Erlend E. Aasland.
bpo-43853: Improved string handling for sqlite3 user-defined functions and aggregates:

It is now possible to pass strings with embedded null characters to UDFs
Conversion failures now correctly raise MemoryError
Patch by Erlend E. Aasland.
bpo-43048: Handle RecursionError in TracebackException’s constructor, so that long exceptions chains are truncated instead of causing traceback formatting to fail.
bpo-41402: Fix email.message.EmailMessage.set_content() when called with binary data and 7bit content transfer encoding.
bpo-32695: The compresslevel and preset keyword arguments of tarfile.open() are now both documented and tested.
bpo-34990: Fixed a Y2k38 bug in the compileall module where it would fail to compile files with a modification time after the year 2038.
bpo-38840: Fix test___all__ on platforms lacking a shared memory implementation.
bpo-30256: Pass multiprocessing BaseProxy argument manager_owned through AutoProxy.
bpo-27513: email.utils.getaddresses() now accepts email.header.Header objects along with string values. Patch by Zackery Spytz.
bpo-33349: lib2to3 now recognizes async generators everywhere.
bpo-29298: Fix TypeError when required subparsers without dest do not receive arguments. Patch by Anthony Sottile.

Documentation

bpo-44903: Removed the othergui.rst file, any references to it, and the list of GUI frameworks in the FAQ. In their place I’ve added links to the Python Wiki page on GUI frameworks.
bpo-44756: Reverted automated virtual environment creation on make html when building documentation. It turned out to be disruptive for downstream distributors.
bpo-44693: Update the definition of __future__ in the glossary by replacing the confusing word “pseudo-module” with a more accurate description.
bpo-35183: Add typical examples to os.path.splitext docs
bpo-30511: Clarify that shutil.make_archive() is not thread-safe due to reliance on changing the current working directory.
bpo-44561: Update of three expired hyperlinks in Doc/distributing/index.rst: “Project structure”, “Building and packaging the project”, and “Uploading the project to the Python Packaging Index”.
bpo-42958: Updated the docstring and docs of filecmp.cmp() to be more accurate and less confusing especially in respect to shallow arg.
bpo-44558: Match the docstring and python implementation of countOf() to the behavior of its c implementation.
bpo-44544: List all kwargs for textwrap.wrap(), textwrap.fill(), and textwrap.shorten(). Now, there are nav links to attributes of TextWrap, which makes navigation much easier while minimizing 
duplication in the documentation.
bpo-38062: Clarify that atexit uses equality comparisons internally.
bpo-43066: Added a warning to zipfile docs: filename arg with a leading slash may cause archive to be un-openable on Windows systems.
bpo-27752: Documentation of csv.Dialect is more descriptive.
bpo-44453: Fix documentation for the return type of sysconfig.get_path().
bpo-39498: Add a “Security Considerations” index which links to standard library modules that have explicitly documented security considerations.
bpo-33479: Remove the unqualified claim that tkinter is threadsafe. It has not been true for several years and likely never was. An explanation of what is true may be added later, after more 
discussion, and possibly after patching _tkinter.c,

Tests

bpo-25130: Add calls of gc.collect() in tests to support PyPy.
bpo-45011: Made tests relying on the _asyncio C extension module optional to allow running on alternative Python implementations. Patch by Serhiy Storchaka.
bpo-44949: Fix auto history tests of test_readline: sometimes, the newline character is not written at the end, so don’t expect it in the output.
bpo-44852: Add ability to wholesale silence DeprecationWarnings while running the regression test suite.
bpo-40928: Notify users running test_decimal regression tests on macOS of potential harmless “malloc can’t allocate region” messages spewed by test_decimal.
bpo-44734: Fixed floating point precision issue in turtle tests.
bpo-44708: Regression tests, when run with -w, are now re-running only the affected test methods instead of re-running the entire test file.
bpo-30256: Add test for nested queues when using multiprocessing shared objects AutoProxy[Queue] inside ListProxy and DictProxy

Build

bpo-44535: Enable building using a Visual Studio 2022 install on Windows.
bpo-43298: Improved error message when building without a Windows SDK installed.

Windows

bpo-45007: Update to OpenSSL 1.1.1l in Windows build
bpo-44572: Avoid consuming standard input in the platform module
bpo-40263: This is a follow-on bug from https://bugs.python.org/issue26903. Once that is applied we run into an off-by-one assertion problem. The assert was not correct.

macOS

bpo-45007: Update macOS installer builds to use OpenSSL 1.1.1l.
bpo-44689: ctypes.util.find_library() now works correctly on macOS 11 Big Sur even if Python is built on an older version of macOS. Previously, when built on older macOS systems, find_library was not 
able to find macOS system libraries when running on Big Sur due to changes in how system libraries are stored.

Tools/Demos

bpo-44756: In the Makefile for documentation (Doc/Makefile), the build rule is dependent on the venv rule. Therefore, html, latex, and other build-dependent rules are also now dependent on venv. The 
venv rule only performs an action if $(VENVDIR) does not exist. Doc/README.rst was updated; most users now only need to type make html.

diffstat:

 lang/py39-html-docs/Makefile |   4 ++--
 lang/py39-html-docs/PLIST    |   9 ++++++---
 lang/py39-html-docs/distinfo |  10 +++++-----
 lang/python39/PLIST          |  12 +++++++++---
 lang/python39/dist.mk        |   4 ++--
 lang/python39/distinfo       |  10 +++++-----
 6 files changed, 29 insertions(+), 20 deletions(-)

diffs (159 lines):

diff -r db89e9706354 -r db9a94ff0fad lang/py39-html-docs/Makefile
--- a/lang/py39-html-docs/Makefile      Wed Sep 01 13:52:52 2021 +0000
+++ b/lang/py39-html-docs/Makefile      Wed Sep 01 13:53:58 2021 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.7 2021/06/29 12:43:42 adam Exp $
+# $NetBSD: Makefile,v 1.8 2021/09/01 13:53:58 adam Exp $
 
-VERS=          3.9.6
+VERS=          3.9.7
 DISTNAME=      python-${VERS}-docs-html
 PKGNAME=       py39-html-docs-${VERS}
 CATEGORIES=    lang python
diff -r db89e9706354 -r db9a94ff0fad lang/py39-html-docs/PLIST
--- a/lang/py39-html-docs/PLIST Wed Sep 01 13:52:52 2021 +0000
+++ b/lang/py39-html-docs/PLIST Wed Sep 01 13:53:58 2021 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2021/06/29 12:43:42 adam Exp $
+@comment $NetBSD: PLIST,v 1.3 2021/09/01 13:53:58 adam Exp $
 share/doc/python3.9/.buildinfo
 share/doc/python3.9/_downloads/6b45dc135219d1404be49d606589a11d/tzinfo_examples.py
 share/doc/python3.9/_images/hashlib-blake2-tree.png
@@ -310,7 +310,6 @@
 share/doc/python3.9/_sources/library/os.path.rst.txt
 share/doc/python3.9/_sources/library/os.rst.txt
 share/doc/python3.9/_sources/library/ossaudiodev.rst.txt
-share/doc/python3.9/_sources/library/othergui.rst.txt
 share/doc/python3.9/_sources/library/parser.rst.txt
 share/doc/python3.9/_sources/library/pathlib.rst.txt
 share/doc/python3.9/_sources/library/pdb.rst.txt
@@ -343,6 +342,7 @@
 share/doc/python3.9/_sources/library/runpy.rst.txt
 share/doc/python3.9/_sources/library/sched.rst.txt
 share/doc/python3.9/_sources/library/secrets.rst.txt
+share/doc/python3.9/_sources/library/security_warnings.rst.txt
 share/doc/python3.9/_sources/library/select.rst.txt
 share/doc/python3.9/_sources/library/selectors.rst.txt
 share/doc/python3.9/_sources/library/shelve.rst.txt
@@ -497,6 +497,7 @@
 share/doc/python3.9/_sources/whatsnew/changelog.rst.txt
 share/doc/python3.9/_sources/whatsnew/index.rst.txt
 share/doc/python3.9/_static/basic.css
+share/doc/python3.9/_static/caret-down.svg
 share/doc/python3.9/_static/changelog_search.js
 share/doc/python3.9/_static/classic.css
 share/doc/python3.9/_static/copybutton.js
@@ -507,10 +508,12 @@
 share/doc/python3.9/_static/jquery-3.4.1.js
 share/doc/python3.9/_static/jquery.js
 share/doc/python3.9/_static/language_data.js
+share/doc/python3.9/_static/menu.js
 share/doc/python3.9/_static/minus.png
 share/doc/python3.9/_static/opensearch.xml
 share/doc/python3.9/_static/plus.png
 share/doc/python3.9/_static/py.png
+share/doc/python3.9/_static/py.svg
 share/doc/python3.9/_static/pydoctheme.css
 share/doc/python3.9/_static/pygments.css
 share/doc/python3.9/_static/searchtools.js
@@ -853,7 +856,6 @@
 share/doc/python3.9/library/os.html
 share/doc/python3.9/library/os.path.html
 share/doc/python3.9/library/ossaudiodev.html
-share/doc/python3.9/library/othergui.html
 share/doc/python3.9/library/parser.html
 share/doc/python3.9/library/pathlib.html
 share/doc/python3.9/library/pdb.html
@@ -886,6 +888,7 @@
 share/doc/python3.9/library/runpy.html
 share/doc/python3.9/library/sched.html
 share/doc/python3.9/library/secrets.html
+share/doc/python3.9/library/security_warnings.html
 share/doc/python3.9/library/select.html
 share/doc/python3.9/library/selectors.html
 share/doc/python3.9/library/shelve.html
diff -r db89e9706354 -r db9a94ff0fad lang/py39-html-docs/distinfo
--- a/lang/py39-html-docs/distinfo      Wed Sep 01 13:52:52 2021 +0000
+++ b/lang/py39-html-docs/distinfo      Wed Sep 01 13:53:58 2021 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.7 2021/06/29 12:43:42 adam Exp $
+$NetBSD: distinfo,v 1.8 2021/09/01 13:53:58 adam Exp $
 
-SHA1 (python-3.9.6-docs-html.tar.bz2) = 0e1bc1a0d50afdd2a2dbd3c1172e9031709b3148
-RMD160 (python-3.9.6-docs-html.tar.bz2) = 6f208425ee8ff4bf230d1af68e4d1f2a4741a193
-SHA512 (python-3.9.6-docs-html.tar.bz2) = b9aa734e9616253278febc5f668ecb6f1d43bc824f84c92e3c13007441388d21e27edd4cb30c463739a271ffcbd8581d6d4573cfe693dca78623762bcdd5bf20
-Size (python-3.9.6-docs-html.tar.bz2) = 6848664 bytes
+SHA1 (python-3.9.7-docs-html.tar.bz2) = 96c50a4a76c4682113a898c636663d534c2a2fb6
+RMD160 (python-3.9.7-docs-html.tar.bz2) = 5ac7ac46e5f3c96f84045382a43b615699813247
+SHA512 (python-3.9.7-docs-html.tar.bz2) = 50b08fe5475bddf21568e7a9692d0e83d1107c7918e02ba6da9e6416dbbaa8b2227911bb1757c79491ed6f11f3f6aa9bd4d666840ae8cbf98cfc9511d8103b65
+Size (python-3.9.7-docs-html.tar.bz2) = 6953294 bytes
diff -r db89e9706354 -r db9a94ff0fad lang/python39/PLIST
--- a/lang/python39/PLIST       Wed Sep 01 13:52:52 2021 +0000
+++ b/lang/python39/PLIST       Wed Sep 01 13:53:58 2021 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.6 2021/06/29 12:43:42 adam Exp $
+@comment $NetBSD: PLIST,v 1.7 2021/09/01 13:53:58 adam Exp $
 bin/2to3-${PY_VER_SUFFIX}
 bin/pydoc${PY_VER_SUFFIX}
 bin/python${PY_VER_SUFFIX}
@@ -1419,8 +1419,8 @@
 lib/python${PY_VER_SUFFIX}/ensurepip/_bundled/__init__.py
 lib/python${PY_VER_SUFFIX}/ensurepip/_bundled/__init__.pyc
 lib/python${PY_VER_SUFFIX}/ensurepip/_bundled/__init__.pyo
-lib/python${PY_VER_SUFFIX}/ensurepip/_bundled/pip-21.1.3-py3-none-any.whl
-lib/python${PY_VER_SUFFIX}/ensurepip/_bundled/setuptools-56.0.0-py3-none-any.whl
+lib/python${PY_VER_SUFFIX}/ensurepip/_bundled/pip-21.2.3-py3-none-any.whl
+lib/python${PY_VER_SUFFIX}/ensurepip/_bundled/setuptools-57.4.0-py3-none-any.whl
 lib/python${PY_VER_SUFFIX}/ensurepip/_uninstall.py
 lib/python${PY_VER_SUFFIX}/ensurepip/_uninstall.pyc
 lib/python${PY_VER_SUFFIX}/ensurepip/_uninstall.pyo
@@ -2648,6 +2648,9 @@
 lib/python${PY_VER_SUFFIX}/test/_test_multiprocessing.py
 lib/python${PY_VER_SUFFIX}/test/_test_multiprocessing.pyc
 lib/python${PY_VER_SUFFIX}/test/_test_multiprocessing.pyo
+lib/python${PY_VER_SUFFIX}/test/_typed_dict_helper.py
+lib/python${PY_VER_SUFFIX}/test/_typed_dict_helper.pyc
+lib/python${PY_VER_SUFFIX}/test/_typed_dict_helper.pyo
 lib/python${PY_VER_SUFFIX}/test/allsans.pem
 lib/python${PY_VER_SUFFIX}/test/ann_module.py
 lib/python${PY_VER_SUFFIX}/test/ann_module.pyc
@@ -3205,6 +3208,9 @@
 lib/python${PY_VER_SUFFIX}/test/support/testresult.py
 lib/python${PY_VER_SUFFIX}/test/support/testresult.pyc
 lib/python${PY_VER_SUFFIX}/test/support/testresult.pyo
+lib/python${PY_VER_SUFFIX}/test/support/warnings_helper.py
+lib/python${PY_VER_SUFFIX}/test/support/warnings_helper.pyc
+lib/python${PY_VER_SUFFIX}/test/support/warnings_helper.pyo
 lib/python${PY_VER_SUFFIX}/test/talos-2019-0758.pem
 lib/python${PY_VER_SUFFIX}/test/test___all__.py
 lib/python${PY_VER_SUFFIX}/test/test___all__.pyc
diff -r db89e9706354 -r db9a94ff0fad lang/python39/dist.mk
--- a/lang/python39/dist.mk     Wed Sep 01 13:52:52 2021 +0000
+++ b/lang/python39/dist.mk     Wed Sep 01 13:53:58 2021 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: dist.mk,v 1.7 2021/06/29 12:43:42 adam Exp $
+# $NetBSD: dist.mk,v 1.8 2021/09/01 13:53:58 adam Exp $
 
-PY_DISTVERSION=        3.9.6
+PY_DISTVERSION=        3.9.7
 DISTNAME=      Python-${PY_DISTVERSION}
 EXTRACT_SUFX=  .tar.xz
 DISTINFO_FILE= ${.CURDIR}/../../lang/python39/distinfo
diff -r db89e9706354 -r db9a94ff0fad lang/python39/distinfo
--- a/lang/python39/distinfo    Wed Sep 01 13:52:52 2021 +0000
+++ b/lang/python39/distinfo    Wed Sep 01 13:53:58 2021 +0000
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.12 2021/06/29 12:43:42 adam Exp $
+$NetBSD: distinfo,v 1.13 2021/09/01 13:53:58 adam Exp $
 
-SHA1 (Python-3.9.6.tar.xz) = 05826c93a178872958f6685094ee3514e53ba653
-RMD160 (Python-3.9.6.tar.xz) = 350b335913bfcb42ff0ebf5ed9ebc2a56fec55f5
-SHA512 (Python-3.9.6.tar.xz) = 01c529e3207738d8771caeb5ed6217e10745c21aa39832fe3185e1c87fdb6aedead97ce38dbb11e02d873654028bd8071c3f345c18452769520723284efe9dc1
-Size (Python-3.9.6.tar.xz) = 19051972 bytes
+SHA1 (Python-3.9.7.tar.xz) = 5208c1d1e0e859f42a9bdbb110efd0855ec4ecf1
+RMD160 (Python-3.9.7.tar.xz) = 8746b224a6be990a131543b23e881d8ab274b5e3
+SHA512 (Python-3.9.7.tar.xz) = 55139776ab58a40f9e1e70613d7071d559ef9e51e32a77791422aac134322c21a49f0348c42813214b69789c589367eae43e16d4ae838a73daf37617e966b735
+Size (Python-3.9.7.tar.xz) = 19123232 bytes
 SHA1 (patch-Lib_ctypes_util.py) = 032cc99ebad93ddddfd89073c60424a952e3faa3
 SHA1 (patch-Lib_distutils_command_install.py) = 6fc6f5d918b7581fc62cd0fe55857ee932c3a341
 SHA1 (patch-Lib_distutils_sysconfig.py) = 6822eafb4dfded86d7f7353831816aeb8119e6cf


Home | Main Index | Thread Index | Old Index