python311 py311-html-docs: updated to 3.11.7

Python 3.11.7 final

Core and Builtins

gh-112625: Fixes a bug where a bytearray object could be cleared while iterating over an argument in the bytearray.join() method that could result in reading memory after it was freed.
gh-112388: Fix an error that was causing the parser to try to overwrite tokenizer errors. Patch by pablo Galindo
gh-112387: Fix error positions for decoded strings with backwards tokenize errors. Patch by Pablo Galindo
gh-112266: Change docstrings of __dict__ and __weakref__.
gh-109181: Speed up Traceback object creation by lazily compute the line number. Patch by Pablo Galindo
gh-102388: Fix a bug where iso2022_jp_3 and iso2022_jp_2004 codecs read out of bounds
gh-111366: Fix an issue in the codeop that was causing SyntaxError exceptions raised in the presence of invalid syntax to not contain precise error messages. Patch by Pablo Galindo
gh-111380: Fix a bug that was causing SyntaxWarning to appear twice when parsing if invalid syntax is encountered later. Patch by Pablo galindo
gh-88116: Traceback location ranges involving wide unicode characters (like emoji and asian characters) now are properly highlighted. Patch by Batuhan Taskaya and Pablo Galindo.
gh-94438: Fix a regression that prevented jumping across is None and is not None when debugging. Patch by Savannah Ostrowski.
gh-110696: Fix incorrect error message for invalid argument unpacking. Patch by Pablo Galindo
gh-110237: Fix missing error checks for calls to PyList_Append in _PyEval_MatchClass.
gh-109216: Fix possible memory leak in BUILD_MAP.
Library
gh-112618: Fix a caching bug relating to typing.Annotated. Annotated[str, True] is no longer identical to Annotated[str, 1].
gh-112509: Fix edge cases that could cause a key to be present in both the __required_keys__ and __optional_keys__ attributes of a typing.TypedDict. Patch by Jelle Zijlstra.
gh-94722: Fix bug where comparison between instances of DocTest fails if one of them has None as its lineno.
gh-112105: Make readline.set_completer_delims() work with libedit
gh-111942: Fix SystemError in the TextIOWrapper constructor with non-encodable “errors” argument in non-debug mode.
gh-109538: Issue warning message instead of having RuntimeError be displayed when event loop has already been closed at StreamWriter.__del__().
gh-111942: Fix crashes in io.TextIOWrapper.reconfigure() when pass invalid arguments, e.g. non-string encoding.
gh-111804: Remove posix.fallocate() under WASI as the underlying posix_fallocate() is not available in WASI preview2.
gh-111841: Fix truncating arguments on an embedded null character in os.putenv() and os.unsetenv() on Windows.
gh-111541: Fix doctest for SyntaxError not-builtin subclasses.
gh-110894: Call loop exception handler for exceptions in client_connected_cb of asyncio.start_server() so that applications can handle it. Patch by Kumar Aditya.
gh-111531: Fix reference leaks in bind_class() and bind_all() methods of tkinter widgets.
gh-111356: Added io.text_encoding(), io.DEFAULT_BUFFER_SIZE, and io.IncrementalNewlineDecoder to io.__all__.
gh-68166: Remove mention of not supported “vsapi” element type in tkinter.ttk.Style.element_create(). Add tests for element_create() and other ttk.Style methods. Add examples for element_create() in the documentation.
gh-111251: Fix _blake2 not checking for errors when initializing.
gh-111174: Fix crash in io.BytesIO.getbuffer() called repeatedly for empty BytesIO.
gh-111187: Postpone removal version for locale.getdefaultlocale() to Python 3.15.
gh-111159: Fix doctest output comparison for exceptions with notes.
gh-110910: Fix invalid state handling in asyncio.TaskGroup and asyncio.Timeout. They now raise proper RuntimeError if they are improperly used and are left in consistent state after this.
gh-111092: Make turtledemo run without default root enabled.
gh-110590: Fix a bug in _sre.compile() where TypeError would be overwritten by OverflowError when the code argument was a list of non-ints.
gh-65052: Prevent pdb from crashing when trying to display undisplayable objects
gh-110519: Deprecation warning about non-integer number in gettext now alwais refers to the line in the user code where gettext function or method is used. Previously it could refer to a line in gettext code.
gh-110378: contextmanager() and asynccontextmanager() context managers now close an invalid underlying generator object that yields more then one value.
gh-110365: Fix termios.tcsetattr() bug that was overwritting existing errors during parsing integers from term list.
gh-110196: Add __reduce__ method to IPv6Address in order to keep scope_id
gh-109747: Improve errors for unsupported look-behind patterns. Now re.error is raised instead of OverflowError or RuntimeError for too large width of look-behind pattern.
gh-109786: Fix possible reference leaks and crash when re-enter the __next__() method of itertools.pairwise.
gh-108791: Improved error handling in pdb command line interface, making it produce more concise error messages.
gh-73561: Omit the interface scope from an IPv6 address when used as Host header by http.client.
gh-86826: zipinfo now supports the full range of values in the TZ string determined by RFC 8536 and detects all invalid formats. Both Python and C implementations now raise exceptions of the same type on invalid data.
bpo-41422: Fixed memory leaks of pickle.Pickler and pickle.Unpickler involving cyclic references via the internal memo mapping.
bpo-40262: The ssl.SSLSocket.recv_into() method no longer requires the buffer argument to implement __len__ and supports buffers with arbitrary item size.
bpo-35191: Fix unexpected integer truncation in socket.setblocking() which caused it to interpret multiples of 2**32 as False.

Documentation

gh-108826: dis module command-line interface is now mentioned in documentation.

Tests

gh-110367: Make regrtest --verbose3 option compatible with --huntrleaks -jN options. The ./python -m test -j1 -R 3:3 --verbose3 command now works as expected. Patch by Victor Stinner.
gh-111309: distutils tests can now be run via unittest.
gh-111165: Remove no longer used functions run_unittest() and run_doctest() and class BasicTestRunner from the test.support module.
gh-110932: Fix regrtest if the SOURCE_DATE_EPOCH environment variable is defined: use the variable value as the random seed. Patch by Victor Stinner.
gh-110995: test_gdb: Fix detection of gdb built without Python scripting support. Patch by Victor Stinner.
gh-110918: Test case matching patterns specified by options --match, --ignore, --matchfile and --ignorefile are now tested in the order of specification, and the last match determines whether the test case be run or ignored.
gh-110647: Fix test_stress_modifying_handlers() of test_signal. Patch by Victor Stinner.
gh-103053: Fix test_tools.test_freeze on FreeBSD: run “make distclean” instead of “make clean” in the copied source directory to remove also the “python” program. Patch by Victor Stinner.
gh-110167: Fix a deadlock in test_socket when server fails with a timeout but the client is still running in its thread. Don’t hold a lock to call cleanup functions in doCleanups(). One of the cleanup function waits until the client completes, whereas the client could deadlock if it called addCleanup() in such situation. Patch by Victor Stinner.
gh-110388: Add tests for tty.
gh-81002: Add tests for termios.
gh-110267: Add tests for pickling and copying PyStructSequence objects. Patched by Xuehai Pan.
gh-109974: Fix race conditions in test_threading lock tests. Wait until a condition is met rather than using time.sleep() with a hardcoded number of seconds. Patch by Victor Stinner.
gh-109972: Split test_gdb.py file into a test_gdb package made of multiple tests, so tests can now be run in parallel. Patch by Victor Stinner.
gh-104736: Fix test_gdb on Python built with LLVM clang 16 on Linux ppc64le (ex: Fedora 38). Search patterns in gdb “bt” command output to detect when gdb fails to retrieve the traceback. For example, skip a test if Backtrace stopped: frame did not save the PC is found. Patch by Victor Stinner.
gh-108927: Fixed order dependence in running tests in the same process when a test that has submodules (e.g. test_importlib) follows a test that imports its submodule (e.g. test_importlib.util) and precedes a test (e.g. test_unittest or test_compileall) that uses that submodule.

Build

gh-103053: “make check-clean-src” now also checks if the “python” program is found in the source directory: fail with an error if it does exist. Patch by Victor Stinner.
gh-109191: Fix compile error when building with recent versions of libedit.

Windows

gh-110913: WindowsConsoleIO now correctly chunks large buffers without splitting up UTF-8 sequences.
gh-110437: Allows overriding the source of VC redistributables so that releases can be guaranteed to never downgrade between updates.
gh-109286: Update Windows installer to use SQLite 3.43.1.

macOS

gh-110950: Update macOS installer to include an upstream Tcl/Tk fix for the Secure coding is not enabled for restorable state! warning encountered in Tkinter on macOS 14 Sonoma.
gh-111015: Ensure that IDLE.app and Python Launcher.app are installed with appropriate permissions on macOS builds.
gh-109286: Update macOS installer to use SQLite 3.43.1.
gh-71383: Update macOS installer to include an upstream Tcl/Tk fix for the ttk::ThemeChanged error encountered in Tkinter.
gh-92603: Update macOS installer to include a fix accepted by upstream Tcl/Tk for a crash encountered after the first tkinter.Tk() instance is destroyed.
gh-99834: Update macOS installer to Tcl/Tk 8.6.13.

IDLE

bpo-35668: Add docstrings to the IDLE debugger module. Fix two bugs: initialize Idb.botframe (should be in Bdb); in Idb.in_rpc_code, check whether prev_frame is None before trying to use it. Greatly expand test_debugger.

C API

gh-112438: Fix support of format units “es”, “et”, “es#”, and “et#” in nested tuples in PyArg_ParseTuple()-like functions.
gh-109521: PyImport_GetImporter() now sets RuntimeError if it fails to get sys.path_hooks or sys.path_importer_cache or they are not list and dict correspondingly. Previously it could return NULL without setting error in obscure cases, crash or raise SystemError if these attributes have wrong type.
This commit is contained in:
adam 2023-12-11 10:23:42 +00:00
parent c8490a268a
commit 9f2ff39631
8 changed files with 151 additions and 111 deletions

View file

@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.7 2023/10/02 19:59:04 adam Exp $
# $NetBSD: Makefile,v 1.8 2023/12/11 10:23:43 adam Exp $
VERS= 3.11.6
VERS= 3.11.7
DISTNAME= python-${VERS}-docs-html
PKGNAME= py311-html-docs-${VERS}
CATEGORIES= lang python

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.3 2023/06/08 10:04:26 adam Exp $
@comment $NetBSD: PLIST,v 1.4 2023/12/11 10:23:43 adam Exp $
share/doc/python3.11/.buildinfo
share/doc/python3.11/_downloads/6dc1f3f4f0e6ca13cb42ddf4d6cbc8af/tzinfo_examples.py
share/doc/python3.11/_images/hashlib-blake2-tree.png
@ -174,6 +174,7 @@ share/doc/python3.11/_sources/library/cgitb.rst.txt
share/doc/python3.11/_sources/library/chunk.rst.txt
share/doc/python3.11/_sources/library/cmath.rst.txt
share/doc/python3.11/_sources/library/cmd.rst.txt
share/doc/python3.11/_sources/library/cmdline.rst.txt
share/doc/python3.11/_sources/library/code.rst.txt
share/doc/python3.11/_sources/library/codecs.rst.txt
share/doc/python3.11/_sources/library/codeop.rst.txt
@ -526,6 +527,7 @@ share/doc/python3.11/_static/pydoctheme.css
share/doc/python3.11/_static/pydoctheme_dark.css
share/doc/python3.11/_static/pygments.css
share/doc/python3.11/_static/pygments_dark.css
share/doc/python3.11/_static/search-focus.js
share/doc/python3.11/_static/searchtools.js
share/doc/python3.11/_static/sidebar.js
share/doc/python3.11/_static/themetoggle.js
@ -730,6 +732,7 @@ share/doc/python3.11/library/cgitb.html
share/doc/python3.11/library/chunk.html
share/doc/python3.11/library/cmath.html
share/doc/python3.11/library/cmd.html
share/doc/python3.11/library/cmdline.html
share/doc/python3.11/library/code.html
share/doc/python3.11/library/codecs.html
share/doc/python3.11/library/codeop.html

View file

@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.7 2023/10/02 19:59:04 adam Exp $
$NetBSD: distinfo,v 1.8 2023/12/11 10:23:43 adam Exp $
BLAKE2s (python-3.11.6-docs-html.tar.bz2) = 2e5fcb22a55c4a5043516db80ea976b00cdf4b361c52998c5fe85dbcb13b85a0
SHA512 (python-3.11.6-docs-html.tar.bz2) = a0b118ea3d8f17e5c0a4abec353bc8fd04603db2da51375272e164f8c93be7e3a992eaac3d256a9d05c2db26f830e4b4add40cdb2e1108b936ff4d358cbbb40c
Size (python-3.11.6-docs-html.tar.bz2) = 7881012 bytes
BLAKE2s (python-3.11.7-docs-html.tar.bz2) = 7cf42310c1b6fa3f3b89b899ce37a25af0b8725eea202f6df8a3cf0d97005a5e
SHA512 (python-3.11.7-docs-html.tar.bz2) = 6fe0e7d86af549b0f8c59dd84d90f403ed4e5adee61289fe194d788305059ad492265cdb7b8185030f4f872eb40b2311d6a9250a7343edafa75d318d1dfcf864
Size (python-3.11.7-docs-html.tar.bz2) = 7855621 bytes

View file

@ -1,9 +1,8 @@
# $NetBSD: Makefile,v 1.21 2023/11/23 12:43:35 jperkin Exp $
# $NetBSD: Makefile,v 1.22 2023/12/11 10:23:42 adam Exp $
.include "dist.mk"
PKGNAME= python311-${PY_DISTVERSION}
PKGREVISION= 4
CATEGORIES= lang python
MAINTAINER= pkgsrc-users@NetBSD.org

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.8 2023/10/23 06:36:00 wiz Exp $
@comment $NetBSD: PLIST,v 1.9 2023/12/11 10:23:42 adam Exp $
bin/2to3-${PY_VER_SUFFIX}
bin/pydoc${PY_VER_SUFFIX}
bin/python${PY_VER_SUFFIX}
@ -2735,10 +2735,6 @@ lib/python${PY_VER_SUFFIX}/test/_test_multiprocessing.pyo
lib/python${PY_VER_SUFFIX}/test/_test_venv_multiprocessing.py
lib/python${PY_VER_SUFFIX}/test/_test_venv_multiprocessing.pyc
lib/python${PY_VER_SUFFIX}/test/_test_venv_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/audiodata/pluck-alaw.aifc
lib/python${PY_VER_SUFFIX}/test/audiodata/pluck-pcm16.aiff
lib/python${PY_VER_SUFFIX}/test/audiodata/pluck-pcm16.au
@ -2764,20 +2760,42 @@ lib/python${PY_VER_SUFFIX}/test/audit-tests.pyo
lib/python${PY_VER_SUFFIX}/test/autotest.py
lib/python${PY_VER_SUFFIX}/test/autotest.pyc
lib/python${PY_VER_SUFFIX}/test/autotest.pyo
lib/python${PY_VER_SUFFIX}/test/badcert.pem
lib/python${PY_VER_SUFFIX}/test/badkey.pem
lib/python${PY_VER_SUFFIX}/test/bisect_cmd.py
lib/python${PY_VER_SUFFIX}/test/bisect_cmd.pyc
lib/python${PY_VER_SUFFIX}/test/bisect_cmd.pyo
lib/python${PY_VER_SUFFIX}/test/capath/4e1295a3.0
lib/python${PY_VER_SUFFIX}/test/capath/5ed36f99.0
lib/python${PY_VER_SUFFIX}/test/capath/6e88d7b8.0
lib/python${PY_VER_SUFFIX}/test/capath/99d0fa06.0
lib/python${PY_VER_SUFFIX}/test/capath/b1930218.0
lib/python${PY_VER_SUFFIX}/test/capath/ceff1710.0
lib/python${PY_VER_SUFFIX}/test/cfgparser.1
lib/python${PY_VER_SUFFIX}/test/cfgparser.2
lib/python${PY_VER_SUFFIX}/test/cfgparser.3
lib/python${PY_VER_SUFFIX}/test/certdata/allsans.pem
lib/python${PY_VER_SUFFIX}/test/certdata/badcert.pem
lib/python${PY_VER_SUFFIX}/test/certdata/badkey.pem
lib/python${PY_VER_SUFFIX}/test/certdata/capath/4e1295a3.0
lib/python${PY_VER_SUFFIX}/test/certdata/capath/5ed36f99.0
lib/python${PY_VER_SUFFIX}/test/certdata/capath/6e88d7b8.0
lib/python${PY_VER_SUFFIX}/test/certdata/capath/99d0fa06.0
lib/python${PY_VER_SUFFIX}/test/certdata/capath/b1930218.0
lib/python${PY_VER_SUFFIX}/test/certdata/capath/ceff1710.0
lib/python${PY_VER_SUFFIX}/test/certdata/ffdh3072.pem
lib/python${PY_VER_SUFFIX}/test/certdata/idnsans.pem
lib/python${PY_VER_SUFFIX}/test/certdata/keycert.passwd.pem
lib/python${PY_VER_SUFFIX}/test/certdata/keycert.pem
lib/python${PY_VER_SUFFIX}/test/certdata/keycert2.pem
lib/python${PY_VER_SUFFIX}/test/certdata/keycert3.pem
lib/python${PY_VER_SUFFIX}/test/certdata/keycert4.pem
lib/python${PY_VER_SUFFIX}/test/certdata/keycertecc.pem
lib/python${PY_VER_SUFFIX}/test/certdata/make_ssl_certs.py
lib/python${PY_VER_SUFFIX}/test/certdata/make_ssl_certs.pyc
lib/python${PY_VER_SUFFIX}/test/certdata/make_ssl_certs.pyo
lib/python${PY_VER_SUFFIX}/test/certdata/nokia.pem
lib/python${PY_VER_SUFFIX}/test/certdata/nosan.pem
lib/python${PY_VER_SUFFIX}/test/certdata/nullbytecert.pem
lib/python${PY_VER_SUFFIX}/test/certdata/nullcert.pem
lib/python${PY_VER_SUFFIX}/test/certdata/pycacert.pem
lib/python${PY_VER_SUFFIX}/test/certdata/pycakey.pem
lib/python${PY_VER_SUFFIX}/test/certdata/revocation.crl
lib/python${PY_VER_SUFFIX}/test/certdata/secp384r1.pem
lib/python${PY_VER_SUFFIX}/test/certdata/selfsigned_pythontestdotnet.pem
lib/python${PY_VER_SUFFIX}/test/certdata/ssl_cert.pem
lib/python${PY_VER_SUFFIX}/test/certdata/ssl_key.passwd.pem
lib/python${PY_VER_SUFFIX}/test/certdata/ssl_key.pem
lib/python${PY_VER_SUFFIX}/test/certdata/talos-2019-0758.pem
lib/python${PY_VER_SUFFIX}/test/cjkencodings/big5-utf8.txt
lib/python${PY_VER_SUFFIX}/test/cjkencodings/big5.txt
lib/python${PY_VER_SUFFIX}/test/cjkencodings/big5hkscs-utf8.txt
@ -2810,6 +2828,9 @@ lib/python${PY_VER_SUFFIX}/test/cjkencodings/shift_jisx0213-utf8.txt
lib/python${PY_VER_SUFFIX}/test/cjkencodings/shift_jisx0213.txt
lib/python${PY_VER_SUFFIX}/test/clinic.test.c
lib/python${PY_VER_SUFFIX}/test/cmath_testcases.txt
lib/python${PY_VER_SUFFIX}/test/configdata/cfgparser.1
lib/python${PY_VER_SUFFIX}/test/configdata/cfgparser.2
lib/python${PY_VER_SUFFIX}/test/configdata/cfgparser.3
lib/python${PY_VER_SUFFIX}/test/crashers/README
lib/python${PY_VER_SUFFIX}/test/crashers/bogus_code_obj.py
lib/python${PY_VER_SUFFIX}/test/crashers/bogus_code_obj.pyc
@ -3029,22 +3050,11 @@ lib/python${PY_VER_SUFFIX}/test/encoded_modules/module_koi8_r.py
lib/python${PY_VER_SUFFIX}/test/encoded_modules/module_koi8_r.pyc
lib/python${PY_VER_SUFFIX}/test/encoded_modules/module_koi8_r.pyo
lib/python${PY_VER_SUFFIX}/test/exception_hierarchy.txt
lib/python${PY_VER_SUFFIX}/test/ffdh3072.pem
lib/python${PY_VER_SUFFIX}/test/final_a.py
lib/python${PY_VER_SUFFIX}/test/final_a.pyc
lib/python${PY_VER_SUFFIX}/test/final_a.pyo
lib/python${PY_VER_SUFFIX}/test/final_b.py
lib/python${PY_VER_SUFFIX}/test/final_b.pyc
lib/python${PY_VER_SUFFIX}/test/final_b.pyo
lib/python${PY_VER_SUFFIX}/test/floating_points.txt
lib/python${PY_VER_SUFFIX}/test/fork_wait.py
lib/python${PY_VER_SUFFIX}/test/fork_wait.pyc
lib/python${PY_VER_SUFFIX}/test/fork_wait.pyo
lib/python${PY_VER_SUFFIX}/test/formatfloat_testcases.txt
lib/python${PY_VER_SUFFIX}/test/gdb_sample.py
lib/python${PY_VER_SUFFIX}/test/gdb_sample.pyc
lib/python${PY_VER_SUFFIX}/test/gdb_sample.pyo
lib/python${PY_VER_SUFFIX}/test/idnsans.pem
lib/python${PY_VER_SUFFIX}/test/ieee754.txt
lib/python${PY_VER_SUFFIX}/test/imghdrdata/python-raw.jpg
lib/python${PY_VER_SUFFIX}/test/imghdrdata/python.bmp
@ -3063,27 +3073,6 @@ lib/python${PY_VER_SUFFIX}/test/imghdrdata/python.xbm
lib/python${PY_VER_SUFFIX}/test/imp_dummy.py
lib/python${PY_VER_SUFFIX}/test/imp_dummy.pyc
lib/python${PY_VER_SUFFIX}/test/imp_dummy.pyo
lib/python${PY_VER_SUFFIX}/test/inspect_fodder.py
lib/python${PY_VER_SUFFIX}/test/inspect_fodder.pyc
lib/python${PY_VER_SUFFIX}/test/inspect_fodder.pyo
lib/python${PY_VER_SUFFIX}/test/inspect_fodder2.py
lib/python${PY_VER_SUFFIX}/test/inspect_fodder2.pyc
lib/python${PY_VER_SUFFIX}/test/inspect_fodder2.pyo
lib/python${PY_VER_SUFFIX}/test/inspect_stock_annotations.py
lib/python${PY_VER_SUFFIX}/test/inspect_stock_annotations.pyc
lib/python${PY_VER_SUFFIX}/test/inspect_stock_annotations.pyo
lib/python${PY_VER_SUFFIX}/test/inspect_stringized_annotations.py
lib/python${PY_VER_SUFFIX}/test/inspect_stringized_annotations.pyc
lib/python${PY_VER_SUFFIX}/test/inspect_stringized_annotations.pyo
lib/python${PY_VER_SUFFIX}/test/inspect_stringized_annotations_2.py
lib/python${PY_VER_SUFFIX}/test/inspect_stringized_annotations_2.pyc
lib/python${PY_VER_SUFFIX}/test/inspect_stringized_annotations_2.pyo
lib/python${PY_VER_SUFFIX}/test/keycert.passwd.pem
lib/python${PY_VER_SUFFIX}/test/keycert.pem
lib/python${PY_VER_SUFFIX}/test/keycert2.pem
lib/python${PY_VER_SUFFIX}/test/keycert3.pem
lib/python${PY_VER_SUFFIX}/test/keycert4.pem
lib/python${PY_VER_SUFFIX}/test/keycertecc.pem
lib/python${PY_VER_SUFFIX}/test/leakers/README.txt
lib/python${PY_VER_SUFFIX}/test/leakers/__init__.py
lib/python${PY_VER_SUFFIX}/test/leakers/__init__.pyc
@ -3100,33 +3089,58 @@ lib/python${PY_VER_SUFFIX}/test/libregrtest/__init__.pyo
lib/python${PY_VER_SUFFIX}/test/libregrtest/cmdline.py
lib/python${PY_VER_SUFFIX}/test/libregrtest/cmdline.pyc
lib/python${PY_VER_SUFFIX}/test/libregrtest/cmdline.pyo
lib/python${PY_VER_SUFFIX}/test/libregrtest/filter.py
lib/python${PY_VER_SUFFIX}/test/libregrtest/filter.pyc
lib/python${PY_VER_SUFFIX}/test/libregrtest/filter.pyo
lib/python${PY_VER_SUFFIX}/test/libregrtest/findtests.py
lib/python${PY_VER_SUFFIX}/test/libregrtest/findtests.pyc
lib/python${PY_VER_SUFFIX}/test/libregrtest/findtests.pyo
lib/python${PY_VER_SUFFIX}/test/libregrtest/logger.py
lib/python${PY_VER_SUFFIX}/test/libregrtest/logger.pyc
lib/python${PY_VER_SUFFIX}/test/libregrtest/logger.pyo
lib/python${PY_VER_SUFFIX}/test/libregrtest/main.py
lib/python${PY_VER_SUFFIX}/test/libregrtest/main.pyc
lib/python${PY_VER_SUFFIX}/test/libregrtest/main.pyo
lib/python${PY_VER_SUFFIX}/test/libregrtest/mypy.ini
lib/python${PY_VER_SUFFIX}/test/libregrtest/pgo.py
lib/python${PY_VER_SUFFIX}/test/libregrtest/pgo.pyc
lib/python${PY_VER_SUFFIX}/test/libregrtest/pgo.pyo
lib/python${PY_VER_SUFFIX}/test/libregrtest/refleak.py
lib/python${PY_VER_SUFFIX}/test/libregrtest/refleak.pyc
lib/python${PY_VER_SUFFIX}/test/libregrtest/refleak.pyo
lib/python${PY_VER_SUFFIX}/test/libregrtest/runtest.py
lib/python${PY_VER_SUFFIX}/test/libregrtest/runtest.pyc
lib/python${PY_VER_SUFFIX}/test/libregrtest/runtest.pyo
lib/python${PY_VER_SUFFIX}/test/libregrtest/runtest_mp.py
lib/python${PY_VER_SUFFIX}/test/libregrtest/runtest_mp.pyc
lib/python${PY_VER_SUFFIX}/test/libregrtest/runtest_mp.pyo
lib/python${PY_VER_SUFFIX}/test/libregrtest/result.py
lib/python${PY_VER_SUFFIX}/test/libregrtest/result.pyc
lib/python${PY_VER_SUFFIX}/test/libregrtest/result.pyo
lib/python${PY_VER_SUFFIX}/test/libregrtest/results.py
lib/python${PY_VER_SUFFIX}/test/libregrtest/results.pyc
lib/python${PY_VER_SUFFIX}/test/libregrtest/results.pyo
lib/python${PY_VER_SUFFIX}/test/libregrtest/run_workers.py
lib/python${PY_VER_SUFFIX}/test/libregrtest/run_workers.pyc
lib/python${PY_VER_SUFFIX}/test/libregrtest/run_workers.pyo
lib/python${PY_VER_SUFFIX}/test/libregrtest/runtests.py
lib/python${PY_VER_SUFFIX}/test/libregrtest/runtests.pyc
lib/python${PY_VER_SUFFIX}/test/libregrtest/runtests.pyo
lib/python${PY_VER_SUFFIX}/test/libregrtest/save_env.py
lib/python${PY_VER_SUFFIX}/test/libregrtest/save_env.pyc
lib/python${PY_VER_SUFFIX}/test/libregrtest/save_env.pyo
lib/python${PY_VER_SUFFIX}/test/libregrtest/setup.py
lib/python${PY_VER_SUFFIX}/test/libregrtest/setup.pyc
lib/python${PY_VER_SUFFIX}/test/libregrtest/setup.pyo
lib/python${PY_VER_SUFFIX}/test/libregrtest/single.py
lib/python${PY_VER_SUFFIX}/test/libregrtest/single.pyc
lib/python${PY_VER_SUFFIX}/test/libregrtest/single.pyo
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/utils.py
lib/python${PY_VER_SUFFIX}/test/libregrtest/utils.pyc
lib/python${PY_VER_SUFFIX}/test/libregrtest/utils.pyo
lib/python${PY_VER_SUFFIX}/test/libregrtest/win_utils.py
lib/python${PY_VER_SUFFIX}/test/libregrtest/win_utils.pyc
lib/python${PY_VER_SUFFIX}/test/libregrtest/win_utils.pyo
lib/python${PY_VER_SUFFIX}/test/libregrtest/worker.py
lib/python${PY_VER_SUFFIX}/test/libregrtest/worker.pyc
lib/python${PY_VER_SUFFIX}/test/libregrtest/worker.pyo
lib/python${PY_VER_SUFFIX}/test/list_tests.py
lib/python${PY_VER_SUFFIX}/test/list_tests.pyc
lib/python${PY_VER_SUFFIX}/test/list_tests.pyo
@ -3134,9 +3148,6 @@ lib/python${PY_VER_SUFFIX}/test/lock_tests.py
lib/python${PY_VER_SUFFIX}/test/lock_tests.pyc
lib/python${PY_VER_SUFFIX}/test/lock_tests.pyo
lib/python${PY_VER_SUFFIX}/test/mailcap.txt
lib/python${PY_VER_SUFFIX}/test/make_ssl_certs.py
lib/python${PY_VER_SUFFIX}/test/make_ssl_certs.pyc
lib/python${PY_VER_SUFFIX}/test/make_ssl_certs.pyo
lib/python${PY_VER_SUFFIX}/test/mapping_tests.py
lib/python${PY_VER_SUFFIX}/test/mapping_tests.pyc
lib/python${PY_VER_SUFFIX}/test/mapping_tests.pyo
@ -3148,9 +3159,6 @@ lib/python${PY_VER_SUFFIX}/test/mime.types
lib/python${PY_VER_SUFFIX}/test/mock_socket.py
lib/python${PY_VER_SUFFIX}/test/mock_socket.pyc
lib/python${PY_VER_SUFFIX}/test/mock_socket.pyo
lib/python${PY_VER_SUFFIX}/test/mod_generics_cache.py
lib/python${PY_VER_SUFFIX}/test/mod_generics_cache.pyc
lib/python${PY_VER_SUFFIX}/test/mod_generics_cache.pyo
lib/python${PY_VER_SUFFIX}/test/mp_fork_bomb.py
lib/python${PY_VER_SUFFIX}/test/mp_fork_bomb.pyc
lib/python${PY_VER_SUFFIX}/test/mp_fork_bomb.pyo
@ -3160,10 +3168,6 @@ lib/python${PY_VER_SUFFIX}/test/mp_preload.pyo
lib/python${PY_VER_SUFFIX}/test/multibytecodec_support.py
lib/python${PY_VER_SUFFIX}/test/multibytecodec_support.pyc
lib/python${PY_VER_SUFFIX}/test/multibytecodec_support.pyo
lib/python${PY_VER_SUFFIX}/test/nokia.pem
lib/python${PY_VER_SUFFIX}/test/nosan.pem
lib/python${PY_VER_SUFFIX}/test/nullbytecert.pem
lib/python${PY_VER_SUFFIX}/test/nullcert.pem
lib/python${PY_VER_SUFFIX}/test/pickletester.py
lib/python${PY_VER_SUFFIX}/test/pickletester.pyc
lib/python${PY_VER_SUFFIX}/test/pickletester.pyo
@ -3171,8 +3175,6 @@ lib/python${PY_VER_SUFFIX}/test/profilee.py
lib/python${PY_VER_SUFFIX}/test/profilee.pyc
lib/python${PY_VER_SUFFIX}/test/profilee.pyo
lib/python${PY_VER_SUFFIX}/test/pstats.pck
lib/python${PY_VER_SUFFIX}/test/pycacert.pem
lib/python${PY_VER_SUFFIX}/test/pycakey.pem
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
@ -3201,7 +3203,6 @@ lib/python${PY_VER_SUFFIX}/test/relimport.pyo
lib/python${PY_VER_SUFFIX}/test/reperf.py
lib/python${PY_VER_SUFFIX}/test/reperf.pyc
lib/python${PY_VER_SUFFIX}/test/reperf.pyo
lib/python${PY_VER_SUFFIX}/test/revocation.crl
lib/python${PY_VER_SUFFIX}/test/sample_doctest.py
lib/python${PY_VER_SUFFIX}/test/sample_doctest.pyc
lib/python${PY_VER_SUFFIX}/test/sample_doctest.pyo
@ -3211,8 +3212,6 @@ lib/python${PY_VER_SUFFIX}/test/sample_doctest_no_docstrings.pyo
lib/python${PY_VER_SUFFIX}/test/sample_doctest_no_doctests.py
lib/python${PY_VER_SUFFIX}/test/sample_doctest_no_doctests.pyc
lib/python${PY_VER_SUFFIX}/test/sample_doctest_no_doctests.pyo
lib/python${PY_VER_SUFFIX}/test/secp384r1.pem
lib/python${PY_VER_SUFFIX}/test/selfsigned_pythontestdotnet.pem
lib/python${PY_VER_SUFFIX}/test/seq_tests.py
lib/python${PY_VER_SUFFIX}/test/seq_tests.pyc
lib/python${PY_VER_SUFFIX}/test/seq_tests.pyo
@ -3231,9 +3230,6 @@ 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_cert.pem
lib/python${PY_VER_SUFFIX}/test/ssl_key.passwd.pem
lib/python${PY_VER_SUFFIX}/test/ssl_key.pem
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
@ -3279,22 +3275,21 @@ lib/python${PY_VER_SUFFIX}/test/support/logging_helper.pyo
lib/python${PY_VER_SUFFIX}/test/support/os_helper.py
lib/python${PY_VER_SUFFIX}/test/support/os_helper.pyc
lib/python${PY_VER_SUFFIX}/test/support/os_helper.pyo
lib/python${PY_VER_SUFFIX}/test/support/pty_helper.py
lib/python${PY_VER_SUFFIX}/test/support/pty_helper.pyc
lib/python${PY_VER_SUFFIX}/test/support/pty_helper.pyo
lib/python${PY_VER_SUFFIX}/test/support/script_helper.py
lib/python${PY_VER_SUFFIX}/test/support/script_helper.pyc
lib/python${PY_VER_SUFFIX}/test/support/script_helper.pyo
lib/python${PY_VER_SUFFIX}/test/support/socket_helper.py
lib/python${PY_VER_SUFFIX}/test/support/socket_helper.pyc
lib/python${PY_VER_SUFFIX}/test/support/socket_helper.pyo
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/threading_helper.py
lib/python${PY_VER_SUFFIX}/test/support/threading_helper.pyc
lib/python${PY_VER_SUFFIX}/test/support/threading_helper.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
lib/python${PY_VER_SUFFIX}/test/test___all__.pyo
@ -4034,9 +4029,30 @@ lib/python${PY_VER_SUFFIX}/test/test_future_stmt/test_future_single_import.pyo
lib/python${PY_VER_SUFFIX}/test/test_gc.py
lib/python${PY_VER_SUFFIX}/test/test_gc.pyc
lib/python${PY_VER_SUFFIX}/test/test_gc.pyo
lib/python${PY_VER_SUFFIX}/test/test_gdb.py
lib/python${PY_VER_SUFFIX}/test/test_gdb.pyc
lib/python${PY_VER_SUFFIX}/test/test_gdb.pyo
lib/python${PY_VER_SUFFIX}/test/test_gdb/__init__.py
lib/python${PY_VER_SUFFIX}/test/test_gdb/__init__.pyc
lib/python${PY_VER_SUFFIX}/test/test_gdb/__init__.pyo
lib/python${PY_VER_SUFFIX}/test/test_gdb/gdb_sample.py
lib/python${PY_VER_SUFFIX}/test/test_gdb/gdb_sample.pyc
lib/python${PY_VER_SUFFIX}/test/test_gdb/gdb_sample.pyo
lib/python${PY_VER_SUFFIX}/test/test_gdb/test_backtrace.py
lib/python${PY_VER_SUFFIX}/test/test_gdb/test_backtrace.pyc
lib/python${PY_VER_SUFFIX}/test/test_gdb/test_backtrace.pyo
lib/python${PY_VER_SUFFIX}/test/test_gdb/test_cfunction.py
lib/python${PY_VER_SUFFIX}/test/test_gdb/test_cfunction.pyc
lib/python${PY_VER_SUFFIX}/test/test_gdb/test_cfunction.pyo
lib/python${PY_VER_SUFFIX}/test/test_gdb/test_cfunction_full.py
lib/python${PY_VER_SUFFIX}/test/test_gdb/test_cfunction_full.pyc
lib/python${PY_VER_SUFFIX}/test/test_gdb/test_cfunction_full.pyo
lib/python${PY_VER_SUFFIX}/test/test_gdb/test_misc.py
lib/python${PY_VER_SUFFIX}/test/test_gdb/test_misc.pyc
lib/python${PY_VER_SUFFIX}/test/test_gdb/test_misc.pyo
lib/python${PY_VER_SUFFIX}/test/test_gdb/test_pretty_print.py
lib/python${PY_VER_SUFFIX}/test/test_gdb/test_pretty_print.pyc
lib/python${PY_VER_SUFFIX}/test/test_gdb/test_pretty_print.pyo
lib/python${PY_VER_SUFFIX}/test/test_gdb/util.py
lib/python${PY_VER_SUFFIX}/test/test_gdb/util.pyc
lib/python${PY_VER_SUFFIX}/test/test_gdb/util.pyo
lib/python${PY_VER_SUFFIX}/test/test_generator_stop.py
lib/python${PY_VER_SUFFIX}/test/test_generator_stop.pyc
lib/python${PY_VER_SUFFIX}/test/test_generator_stop.pyo
@ -4485,9 +4501,27 @@ lib/python${PY_VER_SUFFIX}/test/test_importlib/zipdata02/ziptestdata.zip
lib/python${PY_VER_SUFFIX}/test/test_index.py
lib/python${PY_VER_SUFFIX}/test/test_index.pyc
lib/python${PY_VER_SUFFIX}/test/test_index.pyo
lib/python${PY_VER_SUFFIX}/test/test_inspect.py
lib/python${PY_VER_SUFFIX}/test/test_inspect.pyc
lib/python${PY_VER_SUFFIX}/test/test_inspect.pyo
lib/python${PY_VER_SUFFIX}/test/test_inspect/__init__.py
lib/python${PY_VER_SUFFIX}/test/test_inspect/__init__.pyc
lib/python${PY_VER_SUFFIX}/test/test_inspect/__init__.pyo
lib/python${PY_VER_SUFFIX}/test/test_inspect/inspect_fodder.py
lib/python${PY_VER_SUFFIX}/test/test_inspect/inspect_fodder.pyc
lib/python${PY_VER_SUFFIX}/test/test_inspect/inspect_fodder.pyo
lib/python${PY_VER_SUFFIX}/test/test_inspect/inspect_fodder2.py
lib/python${PY_VER_SUFFIX}/test/test_inspect/inspect_fodder2.pyc
lib/python${PY_VER_SUFFIX}/test/test_inspect/inspect_fodder2.pyo
lib/python${PY_VER_SUFFIX}/test/test_inspect/inspect_stock_annotations.py
lib/python${PY_VER_SUFFIX}/test/test_inspect/inspect_stock_annotations.pyc
lib/python${PY_VER_SUFFIX}/test/test_inspect/inspect_stock_annotations.pyo
lib/python${PY_VER_SUFFIX}/test/test_inspect/inspect_stringized_annotations.py
lib/python${PY_VER_SUFFIX}/test/test_inspect/inspect_stringized_annotations.pyc
lib/python${PY_VER_SUFFIX}/test/test_inspect/inspect_stringized_annotations.pyo
lib/python${PY_VER_SUFFIX}/test/test_inspect/inspect_stringized_annotations_2.py
lib/python${PY_VER_SUFFIX}/test/test_inspect/inspect_stringized_annotations_2.pyc
lib/python${PY_VER_SUFFIX}/test/test_inspect/inspect_stringized_annotations_2.pyo
lib/python${PY_VER_SUFFIX}/test/test_inspect/test_inspect.py
lib/python${PY_VER_SUFFIX}/test/test_inspect/test_inspect.pyc
lib/python${PY_VER_SUFFIX}/test/test_inspect/test_inspect.pyo
lib/python${PY_VER_SUFFIX}/test/test_int.py
lib/python${PY_VER_SUFFIX}/test/test_int.pyc
lib/python${PY_VER_SUFFIX}/test/test_int.pyo
@ -4662,6 +4696,12 @@ lib/python${PY_VER_SUFFIX}/test/test_module/bad_getattr2.pyo
lib/python${PY_VER_SUFFIX}/test/test_module/bad_getattr3.py
lib/python${PY_VER_SUFFIX}/test/test_module/bad_getattr3.pyc
lib/python${PY_VER_SUFFIX}/test/test_module/bad_getattr3.pyo
lib/python${PY_VER_SUFFIX}/test/test_module/final_a.py
lib/python${PY_VER_SUFFIX}/test/test_module/final_a.pyc
lib/python${PY_VER_SUFFIX}/test/test_module/final_a.pyo
lib/python${PY_VER_SUFFIX}/test/test_module/final_b.py
lib/python${PY_VER_SUFFIX}/test/test_module/final_b.pyc
lib/python${PY_VER_SUFFIX}/test/test_module/final_b.pyo
lib/python${PY_VER_SUFFIX}/test/test_module/good_getattr.py
lib/python${PY_VER_SUFFIX}/test/test_module/good_getattr.pyc
lib/python${PY_VER_SUFFIX}/test/test_module/good_getattr.pyo
@ -5079,6 +5119,9 @@ lib/python${PY_VER_SUFFIX}/test/test_telnetlib.pyo
lib/python${PY_VER_SUFFIX}/test/test_tempfile.py
lib/python${PY_VER_SUFFIX}/test/test_tempfile.pyc
lib/python${PY_VER_SUFFIX}/test/test_tempfile.pyo
lib/python${PY_VER_SUFFIX}/test/test_termios.py
lib/python${PY_VER_SUFFIX}/test/test_termios.pyc
lib/python${PY_VER_SUFFIX}/test/test_termios.pyo
lib/python${PY_VER_SUFFIX}/test/test_textwrap.py
lib/python${PY_VER_SUFFIX}/test/test_textwrap.pyc
lib/python${PY_VER_SUFFIX}/test/test_textwrap.pyo
@ -5261,6 +5304,9 @@ lib/python${PY_VER_SUFFIX}/test/test_ttk_guionly.pyo
lib/python${PY_VER_SUFFIX}/test/test_ttk_textonly.py
lib/python${PY_VER_SUFFIX}/test/test_ttk_textonly.pyc
lib/python${PY_VER_SUFFIX}/test/test_ttk_textonly.pyo
lib/python${PY_VER_SUFFIX}/test/test_tty.py
lib/python${PY_VER_SUFFIX}/test/test_tty.pyc
lib/python${PY_VER_SUFFIX}/test/test_tty.pyo
lib/python${PY_VER_SUFFIX}/test/test_tuple.py
lib/python${PY_VER_SUFFIX}/test/test_tuple.pyc
lib/python${PY_VER_SUFFIX}/test/test_tuple.pyo
@ -5507,6 +5553,9 @@ lib/python${PY_VER_SUFFIX}/test/tracedmodules/testmod.pyo
lib/python${PY_VER_SUFFIX}/test/typinganndata/__init__.py
lib/python${PY_VER_SUFFIX}/test/typinganndata/__init__.pyc
lib/python${PY_VER_SUFFIX}/test/typinganndata/__init__.pyo
lib/python${PY_VER_SUFFIX}/test/typinganndata/_typed_dict_helper.py
lib/python${PY_VER_SUFFIX}/test/typinganndata/_typed_dict_helper.pyc
lib/python${PY_VER_SUFFIX}/test/typinganndata/_typed_dict_helper.pyo
lib/python${PY_VER_SUFFIX}/test/typinganndata/ann_module.py
lib/python${PY_VER_SUFFIX}/test/typinganndata/ann_module.pyc
lib/python${PY_VER_SUFFIX}/test/typinganndata/ann_module.pyo
@ -5534,6 +5583,9 @@ lib/python${PY_VER_SUFFIX}/test/typinganndata/ann_module8.pyo
lib/python${PY_VER_SUFFIX}/test/typinganndata/ann_module9.py
lib/python${PY_VER_SUFFIX}/test/typinganndata/ann_module9.pyc
lib/python${PY_VER_SUFFIX}/test/typinganndata/ann_module9.pyo
lib/python${PY_VER_SUFFIX}/test/typinganndata/mod_generics_cache.py
lib/python${PY_VER_SUFFIX}/test/typinganndata/mod_generics_cache.pyc
lib/python${PY_VER_SUFFIX}/test/typinganndata/mod_generics_cache.pyo
lib/python${PY_VER_SUFFIX}/test/win_console_handler.py
lib/python${PY_VER_SUFFIX}/test/win_console_handler.pyc
lib/python${PY_VER_SUFFIX}/test/win_console_handler.pyo

View file

@ -1,6 +1,6 @@
# $NetBSD: dist.mk,v 1.7 2023/10/02 19:59:04 adam Exp $
# $NetBSD: dist.mk,v 1.8 2023/12/11 10:23:42 adam Exp $
PY_DISTVERSION= 3.11.6
PY_DISTVERSION= 3.11.7
DISTNAME= Python-${PY_DISTVERSION}
EXTRACT_SUFX= .tar.xz
DISTINFO_FILE= ${.CURDIR}/../../lang/python311/distinfo

View file

@ -1,14 +1,13 @@
$NetBSD: distinfo,v 1.11 2023/10/23 06:36:00 wiz Exp $
$NetBSD: distinfo,v 1.12 2023/12/11 10:23:42 adam Exp $
BLAKE2s (Python-3.11.6.tar.xz) = d1e2f7505bcc6bd571ce51df385712a1f82b01d6b9f7e7779694c148ca104a36
SHA512 (Python-3.11.6.tar.xz) = 94b1038f6f53de0c44f99f72ed0f2e0791fd9d2a325ae00ba145b2b2c332c27b300b3ea3473017518089478f15e01867b1bb203c16610039cce36f8366de341a
Size (Python-3.11.6.tar.xz) = 20067204 bytes
BLAKE2s (Python-3.11.7.tar.xz) = bd74ee6c5197164ba2646db27f640928e7a445fb1f6723051faa4a0d14c11549
SHA512 (Python-3.11.7.tar.xz) = 11e06f2ffe1f66888cb5b4e9f607de815294d6863a77eda6ec6d7c724ef158df9f51881f4a956d4a6fa973c2fb6fd031d495e3496e9b0bb53793fb1cc8434c63
Size (Python-3.11.7.tar.xz) = 20074108 bytes
SHA1 (patch-Include_pymacro.h) = 271a891892dca1a3aaa3bedcae626a68a36cae0b
SHA1 (patch-Lib_ctypes_util.py) = 3dec1b6b7a36e46cbfa0dfcd71c5e7fac9f60764
SHA1 (patch-Lib_distutils_unixccompiler.py) = 8a91e8f4f86517a62408c3a10ed5eb50c4091fbf
SHA1 (patch-Lib_lib2to3_pgen2_driver.py) = 593c4e93c5653ab400f0a98b91db92630c0a7390
SHA1 (patch-Lib_sysconfig.py) = bc6d91bf8f7121456b26ea7f080f588c96f2596f
SHA1 (patch-Makefile.pre.in) = fdb5794d112f422a1f28aa9f8b179dc05520f9e1
SHA1 (patch-Modules_socketmodule.c) = dcf93806374bb8d983b7c8cefd7a3360a90064d7
SHA1 (patch-configure) = a6d9a00ff160581245bc30d1b0d2ec0e9da8fb0b
SHA1 (patch-setup.py) = a601ce207f5e61d15503c8781e925353d1e516b9

View file

@ -1,13 +0,0 @@
$NetBSD: patch-Modules_socketmodule.c,v 1.2 2023/01/14 17:23:26 wiz Exp $
--- Modules/socketmodule.c.orig 2022-01-13 18:52:14.000000000 +0000
+++ Modules/socketmodule.c
@@ -5440,7 +5440,7 @@ socket_sethostname(PyObject *self, PyObj
Py_buffer buf;
int res, flag = 0;
-#ifdef _AIX
+#if defined(_AIX) || (defined(__sun) && PKGSRC_OPSYS_VERSION < 051100)
/* issue #18259, not declared in any useful header file */
extern int sethostname(const char *, size_t);
#endif