pkgsrc-Changes archive

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

CVS commit: pkgsrc/lang



Module Name:    pkgsrc
Committed By:   adam
Date:           Tue Apr  9 16:57:46 UTC 2024

Modified Files:
        pkgsrc/lang/py312-html-docs: Makefile PLIST distinfo
        pkgsrc/lang/python312: PLIST dist.mk distinfo

Log Message:
python312 py312-html-docs: updated to 3.12.3

Python 3.12.3

Security

gh-115398: Allow controlling Expat >=2.6.0 reparse deferral (CVE-2023-52425) by adding five new methods:
xml.etree.ElementTree.XMLParser.flush()
xml.etree.ElementTree.XMLPullParser.flush()
xml.parsers.expat.xmlparser.GetReparseDeferralEnabled()
xml.parsers.expat.xmlparser.SetReparseDeferralEnabled()
xml.sax.expatreader.ExpatParser.flush()
gh-115399: Update bundled libexpat to 2.6.0
gh-115243: Fix possible crashes in collections.deque.index() when the deque is concurrently modified.
gh-114572: ssl.SSLContext.cert_store_stats() and ssl.SSLContext.get_ca_certs() now correctly lock access to the certificate store, when the ssl.SSLContext is shared across multiple threads.

Core and Builtins

gh-109120: Added handle of incorrect star expressions, e.g f(3, *). Patch by Grigoryev Semyon
gh-99108: Updated the hashlib built-in HACL* project C code from upstream that we use for many implementations when they are not present via OpenSSL in a given build. This also avoids the rare 
potential for a C symbol name one definition rule linking issue.
gh-116735: For INSTRUMENTED_CALL_FUNCTION_EX, set arg0 to sys.monitoring.MISSING instead of None for CALL event.
gh-113964: Starting new threads and process creation through os.fork() are now only prevented once all non-daemon threads exit.
gh-116604: Respect the status of the garbage collector when indirect calls are made via PyErr_CheckSignals() and the evaluation breaker. Patch by Pablo Galindo
gh-116626: Ensure INSTRUMENTED_CALL_FUNCTION_EX always emits CALL
gh-116296: Fix possible refleak in object.__reduce__() internal error handling.
gh-116034: Fix location of the error on a failed assertion.
gh-115823: Properly calculate error ranges in the parser when raising SyntaxError exceptions caused by invalid byte sequences. Patch by Pablo Galindo
gh-112087: For an empty reverse iterator for list will be reduced to reversed(). Patch by Donghee Na.
gh-115154: Fix a bug that was causing the tokenize.untokenize() function to handle unicode named literals incorrectly. Patch by Pablo Galindo
gh-114828: Fix compilation crashes in uncommon code examples using super() inside a comprehension in a class body.
gh-115011: Setters for members with an unsigned integer type now support the same range of valid values for objects that has a __index__() method as for int.
gh-112215: Change the C recursion limits to more closely reflect the underlying platform limits.
gh-96497: Fix incorrect resolution of mangled class variables used in assignment expressions in comprehensions.

Library

gh-117467: Preserve mailbox ownership when rewriting in mailbox.mbox.flush(). Patch by Tony Mountifield.

gh-117310: Fixed an unlikely early & extra Py_DECREF triggered crash in ssl when creating a new _ssl._SSLContext if CPython was built implausibly such that the default cipher list is empty or the SSL 
library it was linked against reports a failure from its C SSL_CTX_set_cipher_list() API.

gh-117178: Fix regression in lazy loading of self-referential modules, introduced in gh-114781.

gh-117084: Fix zipfile extraction for directory entries with the name containing backslashes on Windows.

gh-117110: Fix a bug that prevents subclasses of typing.Any to be instantiated with arguments. Patch by Chris Fu.

gh-90872: On Windows, subprocess.Popen.wait() no longer calls WaitForSingleObject() with a negative timeout: pass 0 ms if the timeout is negative. Patch by Victor Stinner.

gh-116957: configparser: Don’t leave ConfigParser values in an invalid state (stored as a list instead of a str) after an earlier read raised DuplicateSectionError or DuplicateOptionError.

gh-90095: Ignore empty lines and comments in .pdbrc

gh-116764: Restore support of None and other false values in urllib.parse functions parse_qs() and parse_qsl(). Also, they now raise a TypeError for non-zero integers and non-empty sequences.

gh-116811: In PathFinder.invalidate_caches, delegate to MetadataPathFinder.invalidate_caches.

gh-116600: Fix repr() for global Flag members.

gh-116484: Change automatically generated tkinter.Checkbutton widget names to avoid collisions with automatically generated tkinter.ttk.Checkbutton widget names within the same parent widget.

gh-116401: Fix blocking os.fwalk() and shutil.rmtree() on opening named pipe.

gh-116143: 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.

gh-116325: typing: raise SyntaxError instead of AttributeError on forward references as empty strings.

gh-90535: Fix support of interval values > 1 in logging.TimedRotatingFileHandler for when='MIDNIGHT' and when='Wx'.

gh-115978: 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).

gh-88352: Fix the computation of the next rollover time in the logging.TimedRotatingFileHandler handler. computeRollover() now always returns a timestamp larger than the specified time and works 
correctly during the DST change. 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.

gh-87115: Set __main__.__spec__ to None when running a script with pdb

gh-76511: Fix UnicodeEncodeError in 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.

gh-116040: [Enum] fix by-value calls when second value is falsey; e.g. Cardinal(1, 0)

gh-75988: Fixed unittest.mock.create_autospec() to pass the call through to the wrapped object to return the real result.

gh-115881: Fix issue where 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.

gh-115886: Fix silent truncation of the name with an embedded null character in multiprocessing.shared_memory.SharedMemory.

gh-115809: Improve algorithm for computing which rolled-over log files to delete in 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.

gh-74668: urllib.parse functions parse_qs() and parse_qsl() now support bytes arguments containing raw and percent-encoded non-ASCII data.

gh-67044: csv.writer() now always quotes or escapes '\r' and '\n', regardless of lineterminator value.

gh-115712: csv.writer() now quotes empty fields if delimiter is a space and skipinitialspace is true and raises exception if quoting is not possible.

gh-112364: Fixed ast.unparse() to handle format_spec with ", ' or \\. Patched by Frank Hoffmann.

gh-111358: Fix a bug in asyncio.BaseEventLoop.shutdown_default_executor() to ensure the timeout passed to the coroutine behaves as expected.

gh-115618: Fix improper decreasing the reference count for None argument in property methods getter(), setter() and deleter().

gh-115570: A DeprecationWarning is no longer omitted on access to the __doc__ attributes of the deprecated typing.io and typing.re pseudo-modules.

gh-112006: Fix inspect.unwrap() for types with the __wrapper__ data descriptor.

gh-101293: 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 inspect.Signature.from_callable().

gh-115392: Fix a bug in doctest where incorrect line numbers would be reported for decorated functions.

gh-114563: Fix several format() bugs when using the C implementation of Decimal: * memory leak in some rare cases when using the z format option (coerce negative 0) * incorrect output when applying 
the z format option to type F (fixed-point with capital NAN / INF) * incorrect output when applying the # format option (alternate form)

gh-115197: urllib.request no longer resolves the hostname before checking it against the system’s proxy bypass list on macOS and Windows.

gh-115165: Most exceptions are now ignored when attempting to set the __orig_class__ attribute on objects returned when calling typing generic aliases (including generic aliases created using 
typing.Annotated). Previously only AttributeError was ignored. Patch by Dave Shawley.

gh-115133: Fix tests for XMLPullParser with Expat 2.6.0.

gh-115059: io.BufferedRandom.read1() now flushes the underlying write buffer.

gh-79382: Trailing ** no longer allows to match files and non-existing paths in recursive glob().

gh-114071: Support tuple subclasses using auto() for enum member value.

gh-114763: Protect modules loaded with importlib.util.LazyLoader from race conditions when multiple threads try to access attributes before the loading is complete.

gh-97959: Fix rendering class methods, bound methods, method and function aliases in pydoc. Class methods no longer have “method of builtins.type instance” note. Corresponding notes are now added for 
class and unbound methods. Method and function aliases now have references to the module or the class where the origin was defined if it differs from the current. Bound methods are now listed in the 
static methods section. Methods of builtin classes are now supported as well as methods of Python classes.

gh-112281: Allow creating union of types for typing.Annotated with unhashable metadata.

gh-111775: Fix importlib.resources.simple.ResourceHandle.open() for text mode, added missed stream argument.

gh-90095: Make .pdbrc and -c work with any valid pdb commands.

gh-107155: Fix incorrect output of help(x) where x is a lambda function, which has an __annotations__ dictionary attribute with a "return" key.

gh-105866: Fixed _get_slots bug which caused error when defining dataclasses with slots and a weakref_slot.

gh-60346: Fix ArgumentParser inconsistent with parse_known_args.

gh-100985: Update HTTPSConnection to consistently wrap IPv6 Addresses when using a proxy.

gh-100884: email: fix misfolding of comma in address-lists over multiple lines in combination with unicode encoding.

gh-95782: Fix io.BufferedReader.tell(), io.BufferedReader.seek(), _pyio.BufferedReader.tell(), io.BufferedRandom.tell(), io.BufferedRandom.seek() and _pyio.BufferedRandom.tell() being able to return 
negative offsets.

gh-96310: Fix a traceback in argparse when all options in a mutually exclusive group are suppressed.

gh-93205: Fixed a bug in 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.

bpo-44865: Add missing call to localization function in argparse.

bpo-43952: Fix multiprocessing.connection.Listener.accept() to accept empty bytes as authkey. Not accepting empty bytes as key causes it to hang indefinitely.

bpo-42125: linecache: get module name from __spec__ if available. This allows getting source code for the __main__ module when a custom loader is used.

gh-66543: Make mimetypes.guess_type() properly parsing of URLs with only a host name, URLs containing fragment or query, and filenames with only a UNC sharepoint on Windows. Based on patch by 
Dong-hee Na.

bpo-33775: Add ‘default’ and ‘version’ help text for localization in argparse.

Documentation

gh-115399: Document CVE-2023-52425 of Expat <2.6.0 under “XML vulnerabilities”.
gh-115233: Fix an example for LoggerAdapter in the Logging Cookbook.

Tests

gh-83434: Disable JUnit XML output (--junit-xml=FILE command line option) in regrtest when hunting for reference leaks (-R option). Patch by Victor Stinner.
gh-117187: Fix XML tests for vanilla Expat <2.6.0.
gh-116333: Tests of TLS related things (error codes, etc) were updated to be more lenient about specific error message strings and behaviors as seen in the BoringSSL and AWS-LC forks of OpenSSL.
gh-115979: Update test_importlib so that it passes under WASI SDK 21.
gh-112536: Add –tsan to test.regrtest for running TSAN tests in reasonable execution times. Patch by Donghee Na.
gh-116307: Added import helper isolated_modules as CleanImport does not remove modules imported during the context. Use it in importlib.resources tests to avoid leaving mod around to impede 
importlib.metadata tests.
gh-115720: Leak tests (-R, --huntrleaks) now show a summary of the number of leaks found in each iteration.
gh-115122: Add --bisect option to regrtest test runner: run failed tests with test.bisect_cmd to identify failing tests. Patch by Victor Stinner.
gh-115596: Fix ProgramPriorityTests in test_os permanently changing the process priority.

Build

gh-116313: Get WASI builds to work under wasmtime 18 w/ WASI 0.2/preview2 primitives.
gh-116117: Backport libb2’s PR #42 to fix compiling CPython on 32-bit Windows with clang-cl.
gh-115167: Avoid vendoring vcruntime140_threads.dll when building with Visual Studio 2022 version 17.8.
gh-112536: Add support for thread sanitizer (TSAN)

Windows

gh-117267: Ensure DirEntry.stat().st_ctime behaves consistently with os.stat() during the deprecation period of st_ctime by containing the same value as st_birthtime. After the deprecation period, 
st_ctime will be the metadata change time (or unavailable through DirEntry), and only st_birthtime will contain the creation time.
gh-116773: Fix instances of <_overlapped.Overlapped object at 0xXXX> still has pending operation at deallocation, the process may crash.
gh-91227: Fix the asyncio ProactorEventLoop implementation so that sending a datagram to an address that is not listening does not prevent receiving any more datagrams.
gh-115554: The installer now has more strict rules about updating the Python Launcher for Windows. In general, most users only have a single launcher installed and will see no difference. When 
multiple launchers have been installed, the option to install the launcher is disabled until all but one have been removed. Downgrading the launcher (which was never allowed) is now more obviously 
blocked.
gh-115543: Python Launcher for Windows can now detect Python 3.13 when installed from the Microsoft Store, and will install Python 3.12 by default when PYLAUNCHER_ALLOW_INSTALL is set.
gh-115049: Fixes py.exe launcher failing when run as users without user profiles.
gh-115009: Update Windows installer to use SQLite 3.45.1.
IDLE
gh-88516: On macOS show a proxy icon in the title bar of editor windows to match platform behaviour.

Tools/Demos

gh-113516: Don’t set LDSHARED when building for WASI.

C API

gh-117021: Fix integer overflow in PyLong_AsPid() on non-Windows 64-bit platforms.
gh-116869: Make the C API compatible with -Werror=declaration-after-statement compiler flag again. Patch by Victor Stinner.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 pkgsrc/lang/py312-html-docs/Makefile \
    pkgsrc/lang/py312-html-docs/PLIST pkgsrc/lang/py312-html-docs/distinfo
cvs rdiff -u -r1.4 -r1.5 pkgsrc/lang/python312/PLIST \
    pkgsrc/lang/python312/distinfo
cvs rdiff -u -r1.3 -r1.4 pkgsrc/lang/python312/dist.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/py312-html-docs/Makefile
diff -u pkgsrc/lang/py312-html-docs/Makefile:1.3 pkgsrc/lang/py312-html-docs/Makefile:1.4
--- pkgsrc/lang/py312-html-docs/Makefile:1.3    Wed Feb  7 08:06:57 2024
+++ pkgsrc/lang/py312-html-docs/Makefile        Tue Apr  9 16:57:46 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.3 2024/02/07 08:06:57 adam Exp $
+# $NetBSD: Makefile,v 1.4 2024/04/09 16:57:46 adam Exp $
 
-VERS=          3.12.2
+VERS=          3.12.3
 DISTNAME=      python-${VERS}-docs-html
 PKGNAME=       py312-html-docs-${VERS}
 CATEGORIES=    lang python
Index: pkgsrc/lang/py312-html-docs/PLIST
diff -u pkgsrc/lang/py312-html-docs/PLIST:1.3 pkgsrc/lang/py312-html-docs/PLIST:1.4
--- pkgsrc/lang/py312-html-docs/PLIST:1.3       Wed Feb  7 08:06:57 2024
+++ pkgsrc/lang/py312-html-docs/PLIST   Tue Apr  9 16:57:46 2024
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.3 2024/02/07 08:06:57 adam Exp $
+@comment $NetBSD: PLIST,v 1.4 2024/04/09 16:57:46 adam Exp $
 share/doc/python3.12/.buildinfo
 share/doc/python3.12/_downloads/6dc1f3f4f0e6ca13cb42ddf4d6cbc8af/tzinfo_examples.py
 share/doc/python3.12/_images/hashlib-blake2-tree.png
@@ -38,6 +38,7 @@ share/doc/python3.12/_sources/c-api/fram
 share/doc/python3.12/_sources/c-api/function.rst.txt
 share/doc/python3.12/_sources/c-api/gcsupport.rst.txt
 share/doc/python3.12/_sources/c-api/gen.rst.txt
+share/doc/python3.12/_sources/c-api/hash.rst.txt
 share/doc/python3.12/_sources/c-api/import.rst.txt
 share/doc/python3.12/_sources/c-api/index.rst.txt
 share/doc/python3.12/_sources/c-api/init.rst.txt
@@ -103,6 +104,7 @@ share/doc/python3.12/_sources/howto/curs
 share/doc/python3.12/_sources/howto/descriptor.rst.txt
 share/doc/python3.12/_sources/howto/enum.rst.txt
 share/doc/python3.12/_sources/howto/functional.rst.txt
+share/doc/python3.12/_sources/howto/gdb_helpers.rst.txt
 share/doc/python3.12/_sources/howto/index.rst.txt
 share/doc/python3.12/_sources/howto/instrumentation.rst.txt
 share/doc/python3.12/_sources/howto/ipaddress.rst.txt
@@ -546,6 +548,7 @@ share/doc/python3.12/c-api/frame.html
 share/doc/python3.12/c-api/function.html
 share/doc/python3.12/c-api/gcsupport.html
 share/doc/python3.12/c-api/gen.html
+share/doc/python3.12/c-api/hash.html
 share/doc/python3.12/c-api/import.html
 share/doc/python3.12/c-api/index.html
 share/doc/python3.12/c-api/init.html
@@ -642,6 +645,7 @@ share/doc/python3.12/howto/curses.html
 share/doc/python3.12/howto/descriptor.html
 share/doc/python3.12/howto/enum.html
 share/doc/python3.12/howto/functional.html
+share/doc/python3.12/howto/gdb_helpers.html
 share/doc/python3.12/howto/index.html
 share/doc/python3.12/howto/instrumentation.html
 share/doc/python3.12/howto/ipaddress.html
Index: pkgsrc/lang/py312-html-docs/distinfo
diff -u pkgsrc/lang/py312-html-docs/distinfo:1.3 pkgsrc/lang/py312-html-docs/distinfo:1.4
--- pkgsrc/lang/py312-html-docs/distinfo:1.3    Wed Feb  7 08:06:57 2024
+++ pkgsrc/lang/py312-html-docs/distinfo        Tue Apr  9 16:57:46 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.3 2024/02/07 08:06:57 adam Exp $
+$NetBSD: distinfo,v 1.4 2024/04/09 16:57:46 adam Exp $
 
-BLAKE2s (python-3.12.2-docs-html.tar.bz2) = 1de190a7bb0c3122fda6504a9ebde80d0760006e3dfb9eb713bed1eb73c950bd
-SHA512 (python-3.12.2-docs-html.tar.bz2) = 5605ae38c259e3b4f342755ae0e05c5e76250af401781543fd27611bbd9cde48b416972dbde4f0414b51094c78a269cfb5b563f860040f574496bc0242f8c2f0
-Size (python-3.12.2-docs-html.tar.bz2) = 8257814 bytes
+BLAKE2s (python-3.12.3-docs-html.tar.bz2) = 5e80d0becb500c6c7e7612d5489c7126292aafc09e1db653256ca054c70ee321
+SHA512 (python-3.12.3-docs-html.tar.bz2) = 2b4cc99d1e22a77959e82c910303d4247efa6579060cb3c69b0d9dd1b868dc1637eb1443552fd89d5314c6d7d01c579e2113539491ebc0fa5ec4a6f2ab0b4d98
+Size (python-3.12.3-docs-html.tar.bz2) = 8304437 bytes

Index: pkgsrc/lang/python312/PLIST
diff -u pkgsrc/lang/python312/PLIST:1.4 pkgsrc/lang/python312/PLIST:1.5
--- pkgsrc/lang/python312/PLIST:1.4     Wed Feb  7 08:06:57 2024
+++ pkgsrc/lang/python312/PLIST Tue Apr  9 16:57:45 2024
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.4 2024/02/07 08:06:57 adam Exp $
+@comment $NetBSD: PLIST,v 1.5 2024/04/09 16:57:45 adam Exp $
 bin/2to3-${PY_VER_SUFFIX}
 bin/idle${PY_VER_SUFFIX}
 bin/pydoc${PY_VER_SUFFIX}
@@ -2660,6 +2660,9 @@ lib/python${PY_VER_SUFFIX}/test/libregrt
 lib/python${PY_VER_SUFFIX}/test/libregrtest/testresult.py
 lib/python${PY_VER_SUFFIX}/test/libregrtest/testresult.pyc
 lib/python${PY_VER_SUFFIX}/test/libregrtest/testresult.pyo
+lib/python${PY_VER_SUFFIX}/test/libregrtest/tsan.py
+lib/python${PY_VER_SUFFIX}/test/libregrtest/tsan.pyc
+lib/python${PY_VER_SUFFIX}/test/libregrtest/tsan.pyo
 lib/python${PY_VER_SUFFIX}/test/libregrtest/utils.py
 lib/python${PY_VER_SUFFIX}/test/libregrtest/utils.pyc
 lib/python${PY_VER_SUFFIX}/test/libregrtest/utils.pyo
@@ -2706,12 +2709,6 @@ lib/python${PY_VER_SUFFIX}/test/pstats.p
 lib/python${PY_VER_SUFFIX}/test/pyclbr_input.py
 lib/python${PY_VER_SUFFIX}/test/pyclbr_input.pyc
 lib/python${PY_VER_SUFFIX}/test/pyclbr_input.pyo
-lib/python${PY_VER_SUFFIX}/test/pydoc_mod.py
-lib/python${PY_VER_SUFFIX}/test/pydoc_mod.pyc
-lib/python${PY_VER_SUFFIX}/test/pydoc_mod.pyo
-lib/python${PY_VER_SUFFIX}/test/pydocfodder.py
-lib/python${PY_VER_SUFFIX}/test/pydocfodder.pyc
-lib/python${PY_VER_SUFFIX}/test/pydocfodder.pyo
 lib/python${PY_VER_SUFFIX}/test/pythoninfo.py
 lib/python${PY_VER_SUFFIX}/test/pythoninfo.pyc
 lib/python${PY_VER_SUFFIX}/test/pythoninfo.pyo
@@ -2758,9 +2755,6 @@ lib/python${PY_VER_SUFFIX}/test/sndhdrda
 lib/python${PY_VER_SUFFIX}/test/sndhdrdata/sndhdr.sndt
 lib/python${PY_VER_SUFFIX}/test/sndhdrdata/sndhdr.voc
 lib/python${PY_VER_SUFFIX}/test/sndhdrdata/sndhdr.wav
-lib/python${PY_VER_SUFFIX}/test/sortperf.py
-lib/python${PY_VER_SUFFIX}/test/sortperf.pyc
-lib/python${PY_VER_SUFFIX}/test/sortperf.pyo
 lib/python${PY_VER_SUFFIX}/test/ssl_servers.py
 lib/python${PY_VER_SUFFIX}/test/ssl_servers.pyc
 lib/python${PY_VER_SUFFIX}/test/ssl_servers.pyo
@@ -3232,6 +3226,39 @@ lib/python${PY_VER_SUFFIX}/test/test_com
 lib/python${PY_VER_SUFFIX}/test/test_complex.py
 lib/python${PY_VER_SUFFIX}/test/test_complex.pyc
 lib/python${PY_VER_SUFFIX}/test/test_complex.pyo
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/__init__.py
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/__init__.pyc
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/__init__.pyo
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/executor.py
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/executor.pyc
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/executor.pyo
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/test_as_completed.py
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/test_as_completed.pyc
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/test_as_completed.pyo
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/test_deadlock.py
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/test_deadlock.pyc
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/test_deadlock.pyo
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/test_future.py
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/test_future.pyc
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/test_future.pyo
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/test_init.py
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/test_init.pyc
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/test_init.pyo
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/test_process_pool.py
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/test_process_pool.pyc
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/test_process_pool.pyo
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/test_shutdown.py
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/test_shutdown.pyc
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/test_shutdown.pyo
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/test_thread_pool.py
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/test_thread_pool.pyc
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/test_thread_pool.pyo
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/test_wait.py
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/test_wait.pyc
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/test_wait.pyo
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/util.py
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/util.pyc
+lib/python${PY_VER_SUFFIX}/test/test_concurrent_futures/util.pyo
 lib/python${PY_VER_SUFFIX}/test/test_configparser.py
 lib/python${PY_VER_SUFFIX}/test/test_configparser.pyc
 lib/python${PY_VER_SUFFIX}/test/test_configparser.pyo
@@ -3513,6 +3540,9 @@ lib/python${PY_VER_SUFFIX}/test/test_dis
 lib/python${PY_VER_SUFFIX}/test/test_doctest/__init__.py
 lib/python${PY_VER_SUFFIX}/test/test_doctest/__init__.pyc
 lib/python${PY_VER_SUFFIX}/test/test_doctest/__init__.pyo
+lib/python${PY_VER_SUFFIX}/test/test_doctest/decorator_mod.py
+lib/python${PY_VER_SUFFIX}/test/test_doctest/decorator_mod.pyc
+lib/python${PY_VER_SUFFIX}/test/test_doctest/decorator_mod.pyo
 lib/python${PY_VER_SUFFIX}/test/test_doctest/doctest_aliases.py
 lib/python${PY_VER_SUFFIX}/test/test_doctest/doctest_aliases.pyc
 lib/python${PY_VER_SUFFIX}/test/test_doctest/doctest_aliases.pyo
@@ -4560,9 +4590,54 @@ lib/python${PY_VER_SUFFIX}/test/test_msi
 lib/python${PY_VER_SUFFIX}/test/test_multibytecodec.py
 lib/python${PY_VER_SUFFIX}/test/test_multibytecodec.pyc
 lib/python${PY_VER_SUFFIX}/test/test_multibytecodec.pyo
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_fork/__init__.py
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_fork/__init__.pyc
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_fork/__init__.pyo
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_fork/test_manager.py
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_fork/test_manager.pyc
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_fork/test_manager.pyo
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_fork/test_misc.py
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_fork/test_misc.pyc
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_fork/test_misc.pyo
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_fork/test_processes.py
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_fork/test_processes.pyc
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_fork/test_processes.pyo
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_fork/test_threads.py
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_fork/test_threads.pyc
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_fork/test_threads.pyo
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_forkserver/__init__.py
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_forkserver/__init__.pyc
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_forkserver/__init__.pyo
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_forkserver/test_manager.py
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_forkserver/test_manager.pyc
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_forkserver/test_manager.pyo
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_forkserver/test_misc.py
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_forkserver/test_misc.pyc
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_forkserver/test_misc.pyo
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_forkserver/test_processes.py
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_forkserver/test_processes.pyc
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_forkserver/test_processes.pyo
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_forkserver/test_threads.py
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_forkserver/test_threads.pyc
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_forkserver/test_threads.pyo
 lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_main_handling.py
 lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_main_handling.pyc
 lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_main_handling.pyo
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_spawn/__init__.py
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_spawn/__init__.pyc
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_spawn/__init__.pyo
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_spawn/test_manager.py
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_spawn/test_manager.pyc
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_spawn/test_manager.pyo
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_spawn/test_misc.py
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_spawn/test_misc.pyc
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_spawn/test_misc.pyo
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_spawn/test_processes.py
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_spawn/test_processes.pyc
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_spawn/test_processes.pyo
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_spawn/test_threads.py
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_spawn/test_threads.pyc
+lib/python${PY_VER_SUFFIX}/test/test_multiprocessing_spawn/test_threads.pyo
 lib/python${PY_VER_SUFFIX}/test/test_named_expressions.py
 lib/python${PY_VER_SUFFIX}/test/test_named_expressions.pyc
 lib/python${PY_VER_SUFFIX}/test/test_named_expressions.pyo
@@ -4722,9 +4797,18 @@ lib/python${PY_VER_SUFFIX}/test/test_py_
 lib/python${PY_VER_SUFFIX}/test/test_pyclbr.py
 lib/python${PY_VER_SUFFIX}/test/test_pyclbr.pyc
 lib/python${PY_VER_SUFFIX}/test/test_pyclbr.pyo
-lib/python${PY_VER_SUFFIX}/test/test_pydoc.py
-lib/python${PY_VER_SUFFIX}/test/test_pydoc.pyc
-lib/python${PY_VER_SUFFIX}/test/test_pydoc.pyo
+lib/python${PY_VER_SUFFIX}/test/test_pydoc/__init__.py
+lib/python${PY_VER_SUFFIX}/test/test_pydoc/__init__.pyc
+lib/python${PY_VER_SUFFIX}/test/test_pydoc/__init__.pyo
+lib/python${PY_VER_SUFFIX}/test/test_pydoc/pydoc_mod.py
+lib/python${PY_VER_SUFFIX}/test/test_pydoc/pydoc_mod.pyc
+lib/python${PY_VER_SUFFIX}/test/test_pydoc/pydoc_mod.pyo
+lib/python${PY_VER_SUFFIX}/test/test_pydoc/pydocfodder.py
+lib/python${PY_VER_SUFFIX}/test/test_pydoc/pydocfodder.pyc
+lib/python${PY_VER_SUFFIX}/test/test_pydoc/pydocfodder.pyo
+lib/python${PY_VER_SUFFIX}/test/test_pydoc/test_pydoc.py
+lib/python${PY_VER_SUFFIX}/test/test_pydoc/test_pydoc.pyc
+lib/python${PY_VER_SUFFIX}/test/test_pydoc/test_pydoc.pyo
 lib/python${PY_VER_SUFFIX}/test/test_pyexpat.py
 lib/python${PY_VER_SUFFIX}/test/test_pyexpat.pyc
 lib/python${PY_VER_SUFFIX}/test/test_pyexpat.pyo
@@ -5157,6 +5241,9 @@ lib/python${PY_VER_SUFFIX}/test/test_too
 lib/python${PY_VER_SUFFIX}/test/test_tools/test_i18n.py
 lib/python${PY_VER_SUFFIX}/test/test_tools/test_i18n.pyc
 lib/python${PY_VER_SUFFIX}/test/test_tools/test_i18n.pyo
+lib/python${PY_VER_SUFFIX}/test/test_tools/test_makefile.py
+lib/python${PY_VER_SUFFIX}/test/test_tools/test_makefile.pyc
+lib/python${PY_VER_SUFFIX}/test/test_tools/test_makefile.pyo
 lib/python${PY_VER_SUFFIX}/test/test_tools/test_reindent.py
 lib/python${PY_VER_SUFFIX}/test/test_tools/test_reindent.pyc
 lib/python${PY_VER_SUFFIX}/test/test_tools/test_reindent.pyo
@@ -5674,6 +5761,7 @@ lib/python${PY_VER_SUFFIX}/test/xmltests
 lib/python${PY_VER_SUFFIX}/test/xmltests.pyo
 lib/python${PY_VER_SUFFIX}/test/zip_cp437_header.zip
 lib/python${PY_VER_SUFFIX}/test/zipdir.zip
+lib/python${PY_VER_SUFFIX}/test/zipdir_backslash.zip
 lib/python${PY_VER_SUFFIX}/test/ziptestdata/README.md
 lib/python${PY_VER_SUFFIX}/test/ziptestdata/exe_with_z64
 lib/python${PY_VER_SUFFIX}/test/ziptestdata/exe_with_zip
Index: pkgsrc/lang/python312/distinfo
diff -u pkgsrc/lang/python312/distinfo:1.4 pkgsrc/lang/python312/distinfo:1.5
--- pkgsrc/lang/python312/distinfo:1.4  Wed Feb  7 08:06:57 2024
+++ pkgsrc/lang/python312/distinfo      Tue Apr  9 16:57:45 2024
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.4 2024/02/07 08:06:57 adam Exp $
+$NetBSD: distinfo,v 1.5 2024/04/09 16:57:45 adam Exp $
 
-BLAKE2s (Python-3.12.2.tar.xz) = 80fe102b31675a1b9f8b7f23d605564a739e0ef4a2c27493a71bd92d09a7cca5
-SHA512 (Python-3.12.2.tar.xz) = 2ccfae7b9f95d8e15ea85d3f66eea5f6a8fdcaffc0b405095fecb33efc0df50b831c1215542910ced948b54e6de1f7242b0b8b9afc5f89079451c552430d7d9f
-Size (Python-3.12.2.tar.xz) = 20591308 bytes
+BLAKE2s (Python-3.12.3.tar.xz) = 260855a18335d0355f7472b5ff81b1cea27cc9ccbf5c1346322681bb40a510e2
+SHA512 (Python-3.12.3.tar.xz) = 4a2213b108e7f1f1525baa8348e68b2a2336d925e60d0a59f0225fc470768a2c8031edafc0b8243f94dbae18afda335ee5adf2785328c2218fd64cbb439f13a4
+Size (Python-3.12.3.tar.xz) = 20625068 bytes
 SHA1 (patch-Include_pymacro.h) = 271a891892dca1a3aaa3bedcae626a68a36cae0b
 SHA1 (patch-Lib_ctypes_util.py) = 3dec1b6b7a36e46cbfa0dfcd71c5e7fac9f60764
 SHA1 (patch-Lib_lib2to3_pgen2_driver.py) = 593c4e93c5653ab400f0a98b91db92630c0a7390

Index: pkgsrc/lang/python312/dist.mk
diff -u pkgsrc/lang/python312/dist.mk:1.3 pkgsrc/lang/python312/dist.mk:1.4
--- pkgsrc/lang/python312/dist.mk:1.3   Wed Feb  7 08:06:57 2024
+++ pkgsrc/lang/python312/dist.mk       Tue Apr  9 16:57:45 2024
@@ -1,6 +1,6 @@
-# $NetBSD: dist.mk,v 1.3 2024/02/07 08:06:57 adam Exp $
+# $NetBSD: dist.mk,v 1.4 2024/04/09 16:57:45 adam Exp $
 
-PY_DISTVERSION=        3.12.2
+PY_DISTVERSION=        3.12.3
 DISTNAME=      Python-${PY_DISTVERSION}
 EXTRACT_SUFX=  .tar.xz
 DISTINFO_FILE= ${.CURDIR}/../../lang/python312/distinfo



Home | Main Index | Thread Index | Old Index