Compare commits
95 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| b1df85c06b | |||
| 357ebef973 | |||
| d870c1b0f4 | |||
| 4fd7821bea | |||
| 816e164be8 | |||
| 978bc1ef01 | |||
| 976c4e0cef | |||
| 871f5c3f10 | |||
| 37d407017e | |||
| 92b79e3223 | |||
| 3a1acd0d11 | |||
| adca6dee9d | |||
| 2abd69687b | |||
| 9a9b32e012 | |||
| 07a0902464 | |||
| 0bf1e0de48 | |||
| eb5e4cd13f | |||
| a5239f3134 | |||
| eaae274dc4 | |||
| 719d910757 | |||
| 836ffcda65 | |||
| dc9a88a0ec | |||
| a10fb63256 | |||
| e4f03691c0 | |||
| 3def3a278d | |||
| 6ccd98d9bb | |||
| 9ca0c40ae3 | |||
| 395f30367f | |||
| 6efef2d138 | |||
| d2b706c283 | |||
| 6b8c3a8e15 | |||
| e09d046cb9 | |||
| 8966bd89d2 | |||
| 30fabf621d | |||
| d1dd8decb1 | |||
| 4e7fbe78f1 | |||
| 6c5ffdb7d1 | |||
| fb81f0c95c | |||
| 7697c02d21 | |||
| 12f6ddbda4 | |||
| 8412211e61 | |||
| 3375f039d6 | |||
| 45096711fd | |||
| 3ab9737306 | |||
| 47d752bbc6 | |||
| 12d36f6d19 | |||
| cf22122d9a | |||
| 7775db5668 | |||
| 1a68b995e6 | |||
| a5731deb52 | |||
| d4c1e47d44 | |||
| 03c870434a | |||
| abfd0ea83d | |||
| e5ccabe5d6 | |||
| 45b3270bb2 | |||
| 8ea0be1078 | |||
| 5017722c2b | |||
| b4ab74738f | |||
| 07a89b44e8 | |||
| 162040ca05 | |||
| d35133fd4e | |||
| 537e68d716 | |||
| a53af73990 | |||
| 1e2a0f61a9 | |||
| a5a443b789 | |||
| 32830d09d0 | |||
| d4b9fa2439 | |||
| e781d820b1 | |||
| 78ba84f9b1 | |||
| 0da0cdfdf4 | |||
| 888af93a0c | |||
| 308255a772 | |||
| a3ff8ce797 | |||
| 608d0c1bfd | |||
| 48b8355786 | |||
| 4352698329 | |||
| 001d1a2a20 | |||
| 6787a9f29d | |||
| 1221d1c8e1 | |||
| 59a4965535 | |||
| 0a0564a0e9 | |||
| c7b43c0f60 | |||
| b97ac57404 | |||
| 041b675fd8 | |||
| 5886778811 | |||
| 11a8661cb2 | |||
| 1ef6a75b82 | |||
| 74a0bc0ca2 | |||
| b1061c18e5 | |||
| b154095872 | |||
| 069357c85b | |||
| 2a2ec95344 | |||
| 517ba388ca | |||
| a80b53565d | |||
| 8e7a85bd98 |
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -21,4 +21,3 @@
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
||||
*.changes merge=merge-changes
|
||||
|
||||
5
.gitignore
vendored
5
.gitignore
vendored
@@ -1,6 +1 @@
|
||||
.osc
|
||||
*.obscpio
|
||||
*.osc
|
||||
_build.*
|
||||
.pbuild
|
||||
python313-*-build/
|
||||
|
||||
@@ -28,10 +28,10 @@ Co-authored-by: Lumír Balhar <frenzy.madness@gmail.com>
|
||||
Lib/test/test_sysconfig.py | 17 +++++++++++--
|
||||
2 files changed, 67 insertions(+), 7 deletions(-)
|
||||
|
||||
Index: Python-3.13.9/Lib/sysconfig/__init__.py
|
||||
Index: Python-3.13.3/Lib/sysconfig/__init__.py
|
||||
===================================================================
|
||||
--- Python-3.13.9.orig/Lib/sysconfig/__init__.py 2025-10-14 15:52:31.000000000 +0200
|
||||
+++ Python-3.13.9/Lib/sysconfig/__init__.py 2025-11-04 17:41:28.521141323 +0100
|
||||
--- Python-3.13.3.orig/Lib/sysconfig/__init__.py 2025-04-08 15:54:08.000000000 +0200
|
||||
+++ Python-3.13.3/Lib/sysconfig/__init__.py 2025-04-11 21:52:31.769387873 +0200
|
||||
@@ -106,6 +106,11 @@
|
||||
else:
|
||||
_INSTALL_SCHEMES['venv'] = _INSTALL_SCHEMES['posix_venv']
|
||||
@@ -128,10 +128,10 @@ Index: Python-3.13.9/Lib/sysconfig/__init__.py
|
||||
_CONFIG_VARS['py_version'] = _PY_VERSION
|
||||
_CONFIG_VARS['py_version_short'] = _PY_VERSION_SHORT
|
||||
_CONFIG_VARS['py_version_nodot'] = _PY_VERSION_SHORT_NO_DOT
|
||||
Index: Python-3.13.9/Lib/test/test_sysconfig.py
|
||||
Index: Python-3.13.3/Lib/test/test_sysconfig.py
|
||||
===================================================================
|
||||
--- Python-3.13.9.orig/Lib/test/test_sysconfig.py 2025-10-14 15:52:31.000000000 +0200
|
||||
+++ Python-3.13.9/Lib/test/test_sysconfig.py 2025-11-04 17:41:28.521386489 +0100
|
||||
--- Python-3.13.3.orig/Lib/test/test_sysconfig.py 2025-04-08 15:54:08.000000000 +0200
|
||||
+++ Python-3.13.3/Lib/test/test_sysconfig.py 2025-04-11 21:52:31.769841915 +0200
|
||||
@@ -130,8 +130,19 @@
|
||||
for scheme in _INSTALL_SCHEMES:
|
||||
for name in _INSTALL_SCHEMES[scheme]:
|
||||
@@ -153,7 +153,7 @@ Index: Python-3.13.9/Lib/test/test_sysconfig.py
|
||||
os.path.normpath(expected),
|
||||
)
|
||||
|
||||
@@ -393,7 +404,7 @@
|
||||
@@ -386,7 +397,7 @@
|
||||
self.assertTrue(os.path.isfile(config_h), config_h)
|
||||
|
||||
def test_get_scheme_names(self):
|
||||
@@ -162,7 +162,7 @@ Index: Python-3.13.9/Lib/test/test_sysconfig.py
|
||||
if HAS_USER_BASE:
|
||||
wanted.extend(['nt_user', 'osx_framework_user', 'posix_user'])
|
||||
self.assertEqual(get_scheme_names(), tuple(sorted(wanted)))
|
||||
@@ -405,6 +416,8 @@
|
||||
@@ -398,6 +409,8 @@
|
||||
cmd = "-c", "import sysconfig; print(sysconfig.get_platform())"
|
||||
self.assertEqual(py.call_real(*cmd), py.call_link(*cmd))
|
||||
|
||||
|
||||
BIN
Python-3.13.11.tar.xz
LFS
BIN
Python-3.13.11.tar.xz
LFS
Binary file not shown.
@@ -1 +0,0 @@
|
||||
{"mediaType": "application/vnd.dev.sigstore.bundle.v0.3+json", "verificationMaterial": {"certificate": {"rawBytes": "MIICyTCCAk+gAwIBAgIUMZ9OrU89PmgWXWiYxq/s1e8xVkkwCgYIKoZIzj0EAwMwNzEVMBMGA1UEChMMc2lnc3RvcmUuZGV2MR4wHAYDVQQDExVzaWdzdG9yZS1pbnRlcm1lZGlhdGUwHhcNMjUxMjA1MTY1NjU1WhcNMjUxMjA1MTcwNjU1WjAAMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEQ3Wq/mhAIwL1ZNOiCgOmVYXqwl8rWBi+hwTYY+NJLvmuRW7wblbWyTJ1RSZrS9dVGhVdWZP7tT2hvkt56ibycaOCAW4wggFqMA4GA1UdDwEB/wQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDAzAdBgNVHQ4EFgQUCukYhSJA3LGmELdmyGSLM/sNqPowHwYDVR0jBBgwFoAU39Ppz1YkEZb5qNjpKFWixi4YZD8wHwYDVR0RAQH/BBUwE4ERdGhvbWFzQHB5dGhvbi5vcmcwKQYKKwYBBAGDvzABAQQbaHR0cHM6Ly9hY2NvdW50cy5nb29nbGUuY29tMCsGCisGAQQBg78wAQgEHQwbaHR0cHM6Ly9hY2NvdW50cy5nb29nbGUuY29tMIGJBgorBgEEAdZ5AgQCBHsEeQB3AHUA3T0wasbHETJjGR4cmWc3AqJKXrjePK3/h4pygC8p7o4AAAGa73H4UAAABAMARjBEAiAoqadI7BCu3G3jmK140KSkRC+uTKIS7K/yAUtT8zfdiwIgV51hPZZYKSjHglktFhqcxzHLdRyb96/caoR4m+DHvT8wCgYIKoZIzj0EAwMDaAAwZQIwSuCW4+VibjHM96ArSncpYew+tvp7bMlc21AHsgr12ZO6p//IiSdjJlqOTpYwCWtFAjEA0BxY6Y7zl4+baG4+BZ+EEiwDwoCOVTR7ORMuDYeZ/Dy6g47hohxRqtssCYdRKRZq"}, "tlogEntries": [{"logIndex": "743450012", "logId": {"keyId": "wNI9atQGlz+VWfO6LRygH4QUfY/8W4RFwiT5i5WRgB0="}, "kindVersion": {"kind": "hashedrekord", "version": "0.0.1"}, "integratedTime": "1764953815", "inclusionPromise": {"signedEntryTimestamp": "MEQCIFAmMfakwQScJ3jGB7ufmmWcvXbT/sQYyb/iIbRyJXYmAiB25k62mSSsvteAacdB4SjQJ100UGRI02mHOZykKqirrQ=="}, "inclusionProof": {"logIndex": "621545750", "rootHash": "lTjgILAqSIIoraXAj/bseL/7BMbChIzmHVo5P84pPO8=", "treeSize": "621545755", "hashes": ["FqRC4Ydg7KClKWZIe5BLdSoxPOl3L+wXnnctnBbxa5E=", "hyHMJXZjRrPr7N8JDpms6tqWbIuqgBLKkoDomNSzO8g=", "XV5KmKAmcumiCPrjB89usazCvsWagxoKoI5P3Rn5mDQ=", "FKJNSf/yPWGSGCwEZ4ybeMVy+zECYaK/u2yKEboKDQs=", "4wbyhSYvHHiszMmrsBtjXwOt9um81zByZQLFAXJAu0g=", "q0tC4xtUswgodVV8T7OYpkNlp/XC4qAM541kvTHkq4o=", "se5pDnKcF+idDdO0PdbWjF+rFNUWlCzxj+pSmkASRQU=", "YYvp7Leoq6lF3zEs+Bux7BQt/UrxFbOOJAwVroBevek=", "pQtmpjszxrel2u+2I5HrLBwlwvhc19nfAUsa5EHZAe4=", "0jEq6eagxqoSOor9OR//fY6uOsPzLaE1q1n9tZRzfSc=", "ZmUkYkHBy1B723JrEgiKvepTdHYrP6y2a4oODYvi5VY=", "T4DqWD42hAtN+vX8jKCWqoC4meE4JekI9LxYGCcPy1M="], "checkpoint": {"envelope": "rekor.sigstore.dev - 1193050959916656506\n621545755\nlTjgILAqSIIoraXAj/bseL/7BMbChIzmHVo5P84pPO8=\n\n\u2014 rekor.sigstore.dev wNI9ajBEAiAS9t8HEV2fPKq2rB20KvscWBUzqlzyZr6asuXxp8whiAIgUxc+PuVjTYduOZ2zKNeaSos22BXxAn7hKgxBroQmIkE=\n"}}, "canonicalizedBody": "eyJhcGlWZXJzaW9uIjoiMC4wLjEiLCJraW5kIjoiaGFzaGVkcmVrb3JkIiwic3BlYyI6eyJkYXRhIjp7Imhhc2giOnsiYWxnb3JpdGhtIjoic2hhMjU2IiwidmFsdWUiOiIxNmVkZTdiYjdjZGJmYTg5NWQxMWIwNjQyZmEwZTUyM2YyOTFlNjQ4NzE5NGQ1M2NmNmQzYjMzOGMzYTE3ZWEyIn19LCJzaWduYXR1cmUiOnsiY29udGVudCI6Ik1FVUNJUURENENYVTNMNGlMSkVCb0xFSVlnVU5kTXhjN3VENWdMcUgyeXRFNFQxTnd3SWdKbHBhMHJFbDV0MGdtbTlTYzRoQnpFOG9QK2JLSlVZeExUTmd4dEdnSmo0PSIsInB1YmxpY0tleSI6eyJjb250ZW50IjoiTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTjVWRU5EUVdzclowRjNTVUpCWjBsVlRWbzVUM0pWT0RsUWJXZFhXRmRwV1hoeEwzTXhaVGg0Vm10cmQwTm5XVWxMYjFwSmVtb3dSVUYzVFhjS1RucEZWazFDVFVkQk1WVkZRMmhOVFdNeWJHNWpNMUoyWTIxVmRWcEhWakpOVWpSM1NFRlpSRlpSVVVSRmVGWjZZVmRrZW1SSE9YbGFVekZ3WW01U2JBcGpiVEZzV2tkc2FHUkhWWGRJYUdOT1RXcFZlRTFxUVRGTlZGa3hUbXBWTVZkb1kwNU5hbFY0VFdwQk1VMVVZM2RPYWxVeFYycEJRVTFHYTNkRmQxbElDa3R2V2tsNmFqQkRRVkZaU1V0dldrbDZhakJFUVZGalJGRm5RVVZSTTFkeEwyMW9RVWwzVERGYVRrOXBRMmRQYlZaWldIRjNiRGh5VjBKcEsyaDNWRmtLV1N0T1NreDJiWFZTVnpkM1lteGlWM2xVU2pGU1UxcHlVemxrVmtkb1ZtUlhXbEEzZEZReWFIWnJkRFUyYVdKNVkyRlBRMEZYTkhkblowWnhUVUUwUndwQk1WVmtSSGRGUWk5M1VVVkJkMGxJWjBSQlZFSm5UbFpJVTFWRlJFUkJTMEpuWjNKQ1owVkdRbEZqUkVGNlFXUkNaMDVXU0ZFMFJVWm5VVlZEZFd0WkNtaFRTa0V6VEVkdFJVeGtiWGxIVTB4TkwzTk9jVkJ2ZDBoM1dVUldVakJxUWtKbmQwWnZRVlV6T1ZCd2VqRlphMFZhWWpWeFRtcHdTMFpYYVhocE5Ga0tXa1E0ZDBoM1dVUldVakJTUVZGSUwwSkNWWGRGTkVWU1pFZG9kbUpYUm5wUlNFSTFaRWRvZG1KcE5YWmpiV04zUzFGWlMwdDNXVUpDUVVkRWRucEJRZ3BCVVZGaVlVaFNNR05JVFRaTWVUbG9XVEpPZG1SWE5UQmplVFZ1WWpJNWJtSkhWWFZaTWpsMFRVTnpSME5wYzBkQlVWRkNaemM0ZDBGUlowVklVWGRpQ21GSVVqQmpTRTAyVEhrNWFGa3lUblprVnpVd1kzazFibUl5T1c1aVIxVjFXVEk1ZEUxSlIwcENaMjl5UW1kRlJVRmtXalZCWjFGRFFraHpSV1ZSUWpNS1FVaFZRVE5VTUhkaGMySklSVlJLYWtkU05HTnRWMk16UVhGS1MxaHlhbVZRU3pNdmFEUndlV2RET0hBM2J6UkJRVUZIWVRjelNEUlZRVUZCUWtGTlFRcFNha0pGUVdsQmIzRmhaRWszUWtOMU0wY3phbTFMTVRRd1MxTnJVa01yZFZSTFNWTTNTeTk1UVZWMFZEaDZabVJwZDBsblZqVXhhRkJhV2xsTFUycElDbWRzYTNSR2FIRmplSHBJVEdSU2VXSTVOaTlqWVc5U05HMHJSRWgyVkRoM1EyZFpTVXR2V2tsNmFqQkZRWGROUkdGQlFYZGFVVWwzVTNWRFZ6UXJWbWtLWW1wSVRUazJRWEpUYm1Od1dXVjNLM1IyY0RkaVRXeGpNakZCU0hObmNqRXlXazgyY0M4dlNXbFRaR3BLYkhGUFZIQlpkME5YZEVaQmFrVkJNRUo0V1FvMldUZDZiRFFyWW1GSE5DdENXaXRGUldsM1JIZHZRMDlXVkZJM1QxSk5kVVJaWlZvdlJIazJaelEzYUc5b2VGSnhkSE56UTFsa1VrdFNXbkVLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89In19fX0="}], "timestampVerificationData": {}}, "messageSignature": {"messageDigest": {"algorithm": "SHA2_256", "digest": "Fu3nu3zb+oldEbBkL6DlI/KR5khxlNU89tOzOMOhfqI="}, "signature": "MEUCIQDD4CXU3L4iLJEBoLEIYgUNdMxc7uD5gLqH2ytE4T1NwwIgJlpa0rEl5t0gmm9Sc4hBzE8oP+bKJUYxLTNgxtGgJj4="}}
|
||||
BIN
Python-3.13.7.tar.xz
LFS
Normal file
BIN
Python-3.13.7.tar.xz
LFS
Normal file
Binary file not shown.
1
Python-3.13.7.tar.xz.sigstore
Normal file
1
Python-3.13.7.tar.xz.sigstore
Normal file
@@ -0,0 +1 @@
|
||||
{"mediaType": "application/vnd.dev.sigstore.bundle.v0.3+json", "verificationMaterial": {"certificate": {"rawBytes": "MIICyTCCAlCgAwIBAgIUZMI+1qoqVltZwoOEGQ4+re/SlS4wCgYIKoZIzj0EAwMwNzEVMBMGA1UEChMMc2lnc3RvcmUuZGV2MR4wHAYDVQQDExVzaWdzdG9yZS1pbnRlcm1lZGlhdGUwHhcNMjUwODE0MTM0OTQyWhcNMjUwODE0MTM1OTQyWjAAMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEkKFnh1U6aDYKiIU0p7mtDbbxTezpcJrivGvrwtuUviVav74GRKEp/vcRZnlnVn6olDcrk33qi78husSHeD1VN6OCAW8wggFrMA4GA1UdDwEB/wQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDAzAdBgNVHQ4EFgQUaes5BWscCJHaWxt5BY13fiF+sb8wHwYDVR0jBBgwFoAU39Ppz1YkEZb5qNjpKFWixi4YZD8wHwYDVR0RAQH/BBUwE4ERdGhvbWFzQHB5dGhvbi5vcmcwKQYKKwYBBAGDvzABAQQbaHR0cHM6Ly9hY2NvdW50cy5nb29nbGUuY29tMCsGCisGAQQBg78wAQgEHQwbaHR0cHM6Ly9hY2NvdW50cy5nb29nbGUuY29tMIGKBgorBgEEAdZ5AgQCBHwEegB4AHYA3T0wasbHETJjGR4cmWc3AqJKXrjePK3/h4pygC8p7o4AAAGYqNf2TAAABAMARzBFAiB3VC3ZdiYFvHtFHxRfU4vdiUZjC+VM/cY0nUHpRZ+aqQIhALglsfszSnn7LZNgw3no+XTnlO+mzMAdCLArnFKuyQo0MAoGCCqGSM49BAMDA2cAMGQCME73khzLHp2xLGwh1g0U5yt9CZu0YfQ52BJ0gL3J2adJsuCvmr76YbDnGWOM2IJLYwIwbWuLaywCs9V1hHqx4IewPWU6kGTDL2p3t7RMb7OK9etOkF4xHxV9IaGZZSFwDmSC"}, "tlogEntries": [{"logIndex": "394375946", "logId": {"keyId": "wNI9atQGlz+VWfO6LRygH4QUfY/8W4RFwiT5i5WRgB0="}, "kindVersion": {"kind": "hashedrekord", "version": "0.0.1"}, "integratedTime": "1755179382", "inclusionPromise": {"signedEntryTimestamp": "MEYCIQDofYinceCg3x7ldRHdwLc7aoB6pX2+kukjFdQXFflKdwIhAK7YnONsVnbwsSZpLex8Q7tSMHHglIEQaqavuKAD5taI"}, "inclusionProof": {"logIndex": "272471684", "rootHash": "D6O1d0rPsmFUhblg+N/WsWhcTQVKMGbTlauX5huq8Q0=", "treeSize": "272471685", "hashes": ["12rv4cU8JBEnhl8jcQleuU0gXnRpH2B6oGsUtKoIBHQ=", "PXscKvmfKyXbaxsj99FlqImW6Bg1k3WBNWtHTzgtSVk=", "BaDXQZRZZLXILekCZ5e2TyrtJiYKeNUb2BW6hgybhG0=", "IQvrVF5nsAhxYBjFEIIqcy67H9HEwRdM5XEvXGMlcSc=", "I/JNRoCea85lOiusHIKoAblvRmo6NwnDAtfOV/JiSvQ=", "CjR2KouFHnbUwdf0xk9/f1IcsYFdo4/LMKPy9TV0keM=", "uSQzyFvNic+ZM0goS8qbxn95hvb1YCdWvV0/TnqHDEg=", "LM7bDk+koNXHbb9JB2IH+truLnDDC6WfDzp12zjdFkQ=", "4k9InE/ch3n4a/TapEK+nqfXhlMZEcbvL849wNGtBuo=", "6QfFjG3kfyjFx5PdzVrWBdbNza9Mf4ldecvoXhR3Ip8=", "RllwumeGwAfTxo/zlW3B2deC36+2Lu0FY/hP+QL2aT8=", "vS7O4ozHIQZJWBiov+mkpI27GE8zAmVCEkRcP3NDyNE="], "checkpoint": {"envelope": "rekor.sigstore.dev - 1193050959916656506\n272471685\nD6O1d0rPsmFUhblg+N/WsWhcTQVKMGbTlauX5huq8Q0=\n\n\u2014 rekor.sigstore.dev wNI9ajBEAiBr7yQXNBvCAOgKzReWm4ERI79K22ifVZFn9VUxx5nSxQIgWIPYVrO1E+vP3VRWPptUMs1arlLguTIMkT1tX5WCRoM=\n"}}, "canonicalizedBody": "eyJhcGlWZXJzaW9uIjoiMC4wLjEiLCJraW5kIjoiaGFzaGVkcmVrb3JkIiwic3BlYyI6eyJkYXRhIjp7Imhhc2giOnsiYWxnb3JpdGhtIjoic2hhMjU2IiwidmFsdWUiOiI1NDYyZjkwOTlkZmQzMGUyMzhkZWY4M2M3MWQ5MTg5N2Q4Y2FhNWZmNmViYzdhNTBmMTRkNDgwMmNkYWFhNzlhIn19LCJzaWduYXR1cmUiOnsiY29udGVudCI6Ik1FVUNJUUR4RjM5Z0VUZDgvUWMwbHd5Sk5Mbk5NK3RrTmozaEYyWE1DelZDdjZXOEJBSWdkQUxIWTl3MU14bVNKYUNKMlNtL1p5QWRrL1gwSVF4THFENHA3TSt5UzZRPSIsInB1YmxpY0tleSI6eyJjb250ZW50IjoiTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVTjVWRU5EUVd4RFowRjNTVUpCWjBsVldrMUpLekZ4YjNGV2JIUmFkMjlQUlVkUk5DdHlaUzlUYkZNMGQwTm5XVWxMYjFwSmVtb3dSVUYzVFhjS1RucEZWazFDVFVkQk1WVkZRMmhOVFdNeWJHNWpNMUoyWTIxVmRWcEhWakpOVWpSM1NFRlpSRlpSVVVSRmVGWjZZVmRrZW1SSE9YbGFVekZ3WW01U2JBcGpiVEZzV2tkc2FHUkhWWGRJYUdOT1RXcFZkMDlFUlRCTlZFMHdUMVJSZVZkb1kwNU5hbFYzVDBSRk1FMVVUVEZQVkZGNVYycEJRVTFHYTNkRmQxbElDa3R2V2tsNmFqQkRRVkZaU1V0dldrbDZhakJFUVZGalJGRm5RVVZyUzBadWFERlZObUZFV1V0cFNWVXdjRGR0ZEVSaVluaFVaWHB3WTBweWFYWkhkbklLZDNSMVZYWnBWbUYyTnpSSFVrdEZjQzkyWTFKYWJteHVWbTQyYjJ4RVkzSnJNek54YVRjNGFIVnpVMGhsUkRGV1RqWlBRMEZYT0hkblowWnlUVUUwUndwQk1WVmtSSGRGUWk5M1VVVkJkMGxJWjBSQlZFSm5UbFpJVTFWRlJFUkJTMEpuWjNKQ1owVkdRbEZqUkVGNlFXUkNaMDVXU0ZFMFJVWm5VVlZoWlhNMUNrSlhjMk5EU2toaFYzaDBOVUpaTVRObWFVWXJjMkk0ZDBoM1dVUldVakJxUWtKbmQwWnZRVlV6T1ZCd2VqRlphMFZhWWpWeFRtcHdTMFpYYVhocE5Ga0tXa1E0ZDBoM1dVUldVakJTUVZGSUwwSkNWWGRGTkVWU1pFZG9kbUpYUm5wUlNFSTFaRWRvZG1KcE5YWmpiV04zUzFGWlMwdDNXVUpDUVVkRWRucEJRZ3BCVVZGaVlVaFNNR05JVFRaTWVUbG9XVEpPZG1SWE5UQmplVFZ1WWpJNWJtSkhWWFZaTWpsMFRVTnpSME5wYzBkQlVWRkNaemM0ZDBGUlowVklVWGRpQ21GSVVqQmpTRTAyVEhrNWFGa3lUblprVnpVd1kzazFibUl5T1c1aVIxVjFXVEk1ZEUxSlIwdENaMjl5UW1kRlJVRmtXalZCWjFGRFFraDNSV1ZuUWpRS1FVaFpRVE5VTUhkaGMySklSVlJLYWtkU05HTnRWMk16UVhGS1MxaHlhbVZRU3pNdmFEUndlV2RET0hBM2J6UkJRVUZIV1hGT1pqSlVRVUZCUWtGTlFRcFNla0pHUVdsQ00xWkRNMXBrYVZsR2RraDBSa2g0VW1aVk5IWmthVlZhYWtNclZrMHZZMWt3YmxWSWNGSmFLMkZ4VVVsb1FVeG5iSE5tYzNwVGJtNDNDa3hhVG1kM00yNXZLMWhVYm14UEsyMTZUVUZrUTB4QmNtNUdTM1Y1VVc4d1RVRnZSME5EY1VkVFRUUTVRa0ZOUkVFeVkwRk5SMUZEVFVVM00ydG9la3dLU0hBeWVFeEhkMmd4WnpCVk5YbDBPVU5hZFRCWlpsRTFNa0pLTUdkTU0wb3lZV1JLYzNWRGRtMXlOelpaWWtSdVIxZFBUVEpKU2t4WmQwbDNZbGQxVEFwaGVYZERjemxXTVdoSWNYZzBTV1YzVUZkVk5tdEhWRVJNTW5BemREZFNUV0kzVDBzNVpYUlBhMFkwZUVoNFZqbEpZVWRhV2xOR2QwUnRVME1LTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89In19fX0="}], "timestampVerificationData": {}}, "messageSignature": {"messageDigest": {"algorithm": "SHA2_256", "digest": "VGL5CZ39MOI43vg8cdkYl9jKpf9uvHpQ8U1IAs2qp5o="}, "signature": "MEUCIQDxF39gETd8/Qc0lwyJNLnNM+tkNj3hF2XMCzVCv6W8BAIgdALHY9w1MxmSJaCJ2Sm/ZyAdk/X0IQxLqD4p7M+yS6Q="}}
|
||||
@@ -14,10 +14,10 @@ https://github.com/python/cpython/issues/130979
|
||||
Doc/tools/extensions/audit_events.py | 11 ++++++++---
|
||||
1 file changed, 8 insertions(+), 3 deletions(-)
|
||||
|
||||
Index: Python-3.13.5/Doc/tools/extensions/audit_events.py
|
||||
Index: Python-3.13.6/Doc/tools/extensions/audit_events.py
|
||||
===================================================================
|
||||
--- Python-3.13.5.orig/Doc/tools/extensions/audit_events.py 2025-07-02 15:51:58.388560540 +0200
|
||||
+++ Python-3.13.5/Doc/tools/extensions/audit_events.py 2025-07-02 15:51:58.411254070 +0200
|
||||
--- Python-3.13.6.orig/Doc/tools/extensions/audit_events.py 2025-08-07 12:16:58.257103336 +0200
|
||||
+++ Python-3.13.6/Doc/tools/extensions/audit_events.py 2025-08-07 12:17:02.709401389 +0200
|
||||
@@ -72,8 +72,13 @@
|
||||
logger.warning(msg)
|
||||
return
|
||||
|
||||
@@ -27,10 +27,10 @@
|
||||
Doc/tools/extensions/pydoc_topics.py | 22 +++++-----
|
||||
18 files changed, 159 insertions(+), 130 deletions(-)
|
||||
|
||||
Index: Python-3.13.11/Doc/Makefile
|
||||
Index: Python-3.13.6/Doc/Makefile
|
||||
===================================================================
|
||||
--- Python-3.13.11.orig/Doc/Makefile 2025-12-05 17:06:33.000000000 +0100
|
||||
+++ Python-3.13.11/Doc/Makefile 2025-12-18 23:36:11.845184450 +0100
|
||||
--- Python-3.13.6.orig/Doc/Makefile 2025-08-06 15:05:20.000000000 +0200
|
||||
+++ Python-3.13.6/Doc/Makefile 2025-08-07 12:16:58.253706854 +0200
|
||||
@@ -14,15 +14,15 @@
|
||||
SOURCES =
|
||||
DISTVERSION = $(shell $(PYTHON) tools/extensions/patchlevel.py)
|
||||
@@ -51,10 +51,10 @@ Index: Python-3.13.11/Doc/Makefile
|
||||
$(PAPEROPT_$(PAPER)) \
|
||||
$(SPHINXOPTS) $(SPHINXERRORHANDLING) \
|
||||
. build/$(BUILDER) $(SOURCES)
|
||||
Index: Python-3.13.11/Doc/c-api/arg.rst
|
||||
Index: Python-3.13.6/Doc/c-api/arg.rst
|
||||
===================================================================
|
||||
--- Python-3.13.11.orig/Doc/c-api/arg.rst 2025-12-05 17:06:33.000000000 +0100
|
||||
+++ Python-3.13.11/Doc/c-api/arg.rst 2025-12-18 23:36:11.845570257 +0100
|
||||
--- Python-3.13.6.orig/Doc/c-api/arg.rst 2025-08-06 15:05:20.000000000 +0200
|
||||
+++ Python-3.13.6/Doc/c-api/arg.rst 2025-08-07 12:16:58.254160756 +0200
|
||||
@@ -334,7 +334,6 @@
|
||||
should raise an exception and leave the content of *address* unmodified.
|
||||
|
||||
@@ -63,10 +63,10 @@ Index: Python-3.13.11/Doc/c-api/arg.rst
|
||||
|
||||
If the *converter* returns :c:macro:`!Py_CLEANUP_SUPPORTED`, it may get called a
|
||||
second time if the argument parsing eventually fails, giving the converter a
|
||||
Index: Python-3.13.11/Doc/c-api/typeobj.rst
|
||||
Index: Python-3.13.6/Doc/c-api/typeobj.rst
|
||||
===================================================================
|
||||
--- Python-3.13.11.orig/Doc/c-api/typeobj.rst 2025-12-05 17:06:33.000000000 +0100
|
||||
+++ Python-3.13.11/Doc/c-api/typeobj.rst 2025-12-18 23:36:11.846211337 +0100
|
||||
--- Python-3.13.6.orig/Doc/c-api/typeobj.rst 2025-08-06 15:05:20.000000000 +0200
|
||||
+++ Python-3.13.6/Doc/c-api/typeobj.rst 2025-08-07 12:16:58.254692184 +0200
|
||||
@@ -610,7 +610,7 @@
|
||||
Functions like :c:func:`PyObject_NewVar` will take the value of N as an
|
||||
argument, and store in the instance's :c:member:`~PyVarObject.ob_size` field.
|
||||
@@ -97,10 +97,10 @@ Index: Python-3.13.11/Doc/c-api/typeobj.rst
|
||||
include :c:type:`PyObject` or :c:type:`PyVarObject` (depending on
|
||||
whether :c:member:`~PyVarObject.ob_size` should be included). These are
|
||||
usually defined by the macro :c:macro:`PyObject_HEAD` or
|
||||
Index: Python-3.13.11/Doc/conf.py
|
||||
Index: Python-3.13.6/Doc/conf.py
|
||||
===================================================================
|
||||
--- Python-3.13.11.orig/Doc/conf.py 2025-12-05 17:06:33.000000000 +0100
|
||||
+++ Python-3.13.11/Doc/conf.py 2025-12-18 23:36:11.846742416 +0100
|
||||
--- Python-3.13.6.orig/Doc/conf.py 2025-08-07 12:16:45.115568663 +0200
|
||||
+++ Python-3.13.6/Doc/conf.py 2025-08-07 12:16:58.255236531 +0200
|
||||
@@ -11,6 +11,8 @@
|
||||
from importlib import import_module
|
||||
from importlib.util import find_spec
|
||||
@@ -136,7 +136,7 @@ Index: Python-3.13.11/Doc/conf.py
|
||||
|
||||
# Create table of contents entries for domain objects (e.g. functions, classes,
|
||||
# attributes, etc.). Default is True.
|
||||
@@ -246,6 +248,9 @@
|
||||
@@ -258,6 +260,9 @@
|
||||
# Avoid a warning with Sphinx >= 4.0
|
||||
root_doc = 'contents'
|
||||
|
||||
@@ -146,7 +146,7 @@ Index: Python-3.13.11/Doc/conf.py
|
||||
# Allow translation of index directives
|
||||
gettext_additional_targets = [
|
||||
'index',
|
||||
@@ -285,7 +290,7 @@
|
||||
@@ -297,7 +302,7 @@
|
||||
# (See .readthedocs.yml and https://docs.readthedocs.io/en/stable/reference/environment-variables.html)
|
||||
is_deployment_preview = os.getenv("READTHEDOCS_VERSION_TYPE") == "external"
|
||||
repository_url = os.getenv("READTHEDOCS_GIT_CLONE_URL", "")
|
||||
@@ -155,7 +155,7 @@ Index: Python-3.13.11/Doc/conf.py
|
||||
html_context = {
|
||||
"is_deployment_preview": is_deployment_preview,
|
||||
"repository_url": repository_url or None,
|
||||
@@ -551,6 +556,16 @@
|
||||
@@ -542,6 +547,16 @@
|
||||
}
|
||||
extlinks_detect_hardcoded_links = True
|
||||
|
||||
@@ -172,10 +172,10 @@ Index: Python-3.13.11/Doc/conf.py
|
||||
# Options for c_annotations extension
|
||||
# -----------------------------------
|
||||
|
||||
Index: Python-3.13.11/Doc/library/doctest.rst
|
||||
Index: Python-3.13.6/Doc/library/doctest.rst
|
||||
===================================================================
|
||||
--- Python-3.13.11.orig/Doc/library/doctest.rst 2025-12-05 17:06:33.000000000 +0100
|
||||
+++ Python-3.13.11/Doc/library/doctest.rst 2025-12-18 23:36:11.847131855 +0100
|
||||
--- Python-3.13.6.orig/Doc/library/doctest.rst 2025-08-06 15:05:20.000000000 +0200
|
||||
+++ Python-3.13.6/Doc/library/doctest.rst 2025-08-07 12:16:58.255583157 +0200
|
||||
@@ -310,7 +310,6 @@
|
||||
.. currentmodule:: None
|
||||
|
||||
@@ -184,10 +184,10 @@ Index: Python-3.13.11/Doc/library/doctest.rst
|
||||
|
||||
.. currentmodule:: doctest
|
||||
|
||||
Index: Python-3.13.11/Doc/library/email.compat32-message.rst
|
||||
Index: Python-3.13.6/Doc/library/email.compat32-message.rst
|
||||
===================================================================
|
||||
--- Python-3.13.11.orig/Doc/library/email.compat32-message.rst 2025-12-05 17:06:33.000000000 +0100
|
||||
+++ Python-3.13.11/Doc/library/email.compat32-message.rst 2025-12-18 23:36:11.847579332 +0100
|
||||
--- Python-3.13.6.orig/Doc/library/email.compat32-message.rst 2025-08-06 15:05:20.000000000 +0200
|
||||
+++ Python-3.13.6/Doc/library/email.compat32-message.rst 2025-08-07 12:16:58.256095517 +0200
|
||||
@@ -7,7 +7,6 @@
|
||||
:synopsis: The base class representing email messages in a fashion
|
||||
backward compatible with Python 3.2
|
||||
@@ -196,10 +196,10 @@ Index: Python-3.13.11/Doc/library/email.compat32-message.rst
|
||||
|
||||
|
||||
The :class:`Message` class is very similar to the
|
||||
Index: Python-3.13.11/Doc/library/xml.etree.elementtree.rst
|
||||
Index: Python-3.13.6/Doc/library/xml.etree.elementtree.rst
|
||||
===================================================================
|
||||
--- Python-3.13.11.orig/Doc/library/xml.etree.elementtree.rst 2025-12-05 17:06:33.000000000 +0100
|
||||
+++ Python-3.13.11/Doc/library/xml.etree.elementtree.rst 2025-12-18 23:36:11.847865126 +0100
|
||||
--- Python-3.13.6.orig/Doc/library/xml.etree.elementtree.rst 2025-08-06 15:05:20.000000000 +0200
|
||||
+++ Python-3.13.6/Doc/library/xml.etree.elementtree.rst 2025-08-07 12:16:58.256380542 +0200
|
||||
@@ -873,7 +873,6 @@
|
||||
|
||||
.. module:: xml.etree.ElementTree
|
||||
@@ -208,10 +208,10 @@ Index: Python-3.13.11/Doc/library/xml.etree.elementtree.rst
|
||||
|
||||
.. class:: Element(tag, attrib={}, **extra)
|
||||
|
||||
Index: Python-3.13.11/Doc/tools/check-warnings.py
|
||||
Index: Python-3.13.6/Doc/tools/check-warnings.py
|
||||
===================================================================
|
||||
--- Python-3.13.11.orig/Doc/tools/check-warnings.py 2025-12-05 17:06:33.000000000 +0100
|
||||
+++ Python-3.13.11/Doc/tools/check-warnings.py 2025-12-18 23:36:11.848175434 +0100
|
||||
--- Python-3.13.6.orig/Doc/tools/check-warnings.py 2025-08-06 15:05:20.000000000 +0200
|
||||
+++ Python-3.13.6/Doc/tools/check-warnings.py 2025-08-07 12:16:58.256796101 +0200
|
||||
@@ -228,7 +228,8 @@
|
||||
print(filename)
|
||||
for warning in warnings:
|
||||
@@ -231,10 +231,10 @@ Index: Python-3.13.11/Doc/tools/check-warnings.py
|
||||
for warning in warnings
|
||||
if "Doc/" in warning
|
||||
}
|
||||
Index: Python-3.13.11/Doc/tools/extensions/audit_events.py
|
||||
Index: Python-3.13.6/Doc/tools/extensions/audit_events.py
|
||||
===================================================================
|
||||
--- Python-3.13.11.orig/Doc/tools/extensions/audit_events.py 2025-12-05 17:06:33.000000000 +0100
|
||||
+++ Python-3.13.11/Doc/tools/extensions/audit_events.py 2025-12-18 23:36:11.848442160 +0100
|
||||
--- Python-3.13.6.orig/Doc/tools/extensions/audit_events.py 2025-08-06 15:05:20.000000000 +0200
|
||||
+++ Python-3.13.6/Doc/tools/extensions/audit_events.py 2025-08-07 12:16:58.257103336 +0200
|
||||
@@ -1,9 +1,6 @@
|
||||
"""Support for documenting audit events."""
|
||||
|
||||
@@ -370,10 +370,10 @@ Index: Python-3.13.11/Doc/tools/extensions/audit_events.py
|
||||
) -> nodes.row:
|
||||
row = nodes.row()
|
||||
name_node = nodes.paragraph("", nodes.Text(name))
|
||||
Index: Python-3.13.11/Doc/tools/extensions/availability.py
|
||||
Index: Python-3.13.6/Doc/tools/extensions/availability.py
|
||||
===================================================================
|
||||
--- Python-3.13.11.orig/Doc/tools/extensions/availability.py 2025-12-05 17:06:33.000000000 +0100
|
||||
+++ Python-3.13.11/Doc/tools/extensions/availability.py 2025-12-18 23:36:11.848697922 +0100
|
||||
--- Python-3.13.6.orig/Doc/tools/extensions/availability.py 2025-08-06 15:05:20.000000000 +0200
|
||||
+++ Python-3.13.6/Doc/tools/extensions/availability.py 2025-08-07 12:16:58.257352322 +0200
|
||||
@@ -1,8 +1,6 @@
|
||||
"""Support for documenting platform availability"""
|
||||
|
||||
@@ -427,10 +427,10 @@ Index: Python-3.13.11/Doc/tools/extensions/availability.py
|
||||
app.add_directive("availability", Availability)
|
||||
|
||||
return {
|
||||
Index: Python-3.13.11/Doc/tools/extensions/c_annotations.py
|
||||
Index: Python-3.13.6/Doc/tools/extensions/c_annotations.py
|
||||
===================================================================
|
||||
--- Python-3.13.11.orig/Doc/tools/extensions/c_annotations.py 2025-12-05 17:06:33.000000000 +0100
|
||||
+++ Python-3.13.11/Doc/tools/extensions/c_annotations.py 2025-12-18 23:37:01.590377119 +0100
|
||||
--- Python-3.13.6.orig/Doc/tools/extensions/c_annotations.py 2025-08-06 15:05:20.000000000 +0200
|
||||
+++ Python-3.13.6/Doc/tools/extensions/c_annotations.py 2025-08-07 12:16:58.257571556 +0200
|
||||
@@ -9,22 +9,26 @@
|
||||
* Set ``stable_abi_file`` to the path to stable ABI list.
|
||||
"""
|
||||
@@ -525,7 +525,7 @@ Index: Python-3.13.11/Doc/tools/extensions/c_annotations.py
|
||||
if ROLE_TO_OBJECT_TYPE[record.role] != objtype:
|
||||
msg = (
|
||||
f"Object type mismatch in limited API annotation for {name}: "
|
||||
@@ -256,7 +263,7 @@
|
||||
@@ -234,7 +241,7 @@
|
||||
)
|
||||
|
||||
|
||||
@@ -534,7 +534,7 @@ Index: Python-3.13.11/Doc/tools/extensions/c_annotations.py
|
||||
classes = ["refcount"]
|
||||
if result_refs is None:
|
||||
rc = sphinx_gettext("Return value: Always NULL.")
|
||||
@@ -276,7 +283,7 @@
|
||||
@@ -254,7 +261,7 @@
|
||||
optional_arguments = 0
|
||||
final_argument_whitespace = True
|
||||
|
||||
@@ -543,7 +543,7 @@ Index: Python-3.13.11/Doc/tools/extensions/c_annotations.py
|
||||
state = self.env.domaindata["c_annotations"]
|
||||
content = [
|
||||
f"* :c:{record.role}:`{record.name}`"
|
||||
@@ -344,7 +351,7 @@
|
||||
@@ -277,13 +284,23 @@
|
||||
)
|
||||
|
||||
|
||||
@@ -552,7 +552,6 @@ Index: Python-3.13.11/Doc/tools/extensions/c_annotations.py
|
||||
app.add_config_value("refcount_file", "", "env", types={str})
|
||||
app.add_config_value("stable_abi_file", "", "env", types={str})
|
||||
app.add_directive("limited-api-list", LimitedAPIList)
|
||||
@@ -352,6 +359,16 @@
|
||||
app.connect("builder-inited", init_annotations)
|
||||
app.connect("doctree-read", add_annotations)
|
||||
|
||||
@@ -569,10 +568,10 @@ Index: Python-3.13.11/Doc/tools/extensions/c_annotations.py
|
||||
return {
|
||||
"version": "1.0",
|
||||
"parallel_read_safe": True,
|
||||
Index: Python-3.13.11/Doc/tools/extensions/changes.py
|
||||
Index: Python-3.13.6/Doc/tools/extensions/changes.py
|
||||
===================================================================
|
||||
--- Python-3.13.11.orig/Doc/tools/extensions/changes.py 2025-12-05 17:06:33.000000000 +0100
|
||||
+++ Python-3.13.11/Doc/tools/extensions/changes.py 2025-12-18 23:36:11.849240594 +0100
|
||||
--- Python-3.13.6.orig/Doc/tools/extensions/changes.py 2025-08-06 15:05:20.000000000 +0200
|
||||
+++ Python-3.13.6/Doc/tools/extensions/changes.py 2025-08-07 12:16:58.257773818 +0200
|
||||
@@ -1,7 +1,5 @@
|
||||
"""Support for documenting version of changes, additions, deprecations."""
|
||||
|
||||
@@ -608,10 +607,10 @@ Index: Python-3.13.11/Doc/tools/extensions/changes.py
|
||||
# Override Sphinx's directives with support for 'next'
|
||||
app.add_directive("versionadded", PyVersionChange, override=True)
|
||||
app.add_directive("versionchanged", PyVersionChange, override=True)
|
||||
Index: Python-3.13.11/Doc/tools/extensions/glossary_search.py
|
||||
Index: Python-3.13.6/Doc/tools/extensions/glossary_search.py
|
||||
===================================================================
|
||||
--- Python-3.13.11.orig/Doc/tools/extensions/glossary_search.py 2025-12-05 17:06:33.000000000 +0100
|
||||
+++ Python-3.13.11/Doc/tools/extensions/glossary_search.py 2025-12-18 23:36:11.849448932 +0100
|
||||
--- Python-3.13.6.orig/Doc/tools/extensions/glossary_search.py 2025-08-06 15:05:20.000000000 +0200
|
||||
+++ Python-3.13.6/Doc/tools/extensions/glossary_search.py 2025-08-07 12:16:58.257959947 +0200
|
||||
@@ -1,21 +1,27 @@
|
||||
"""Feature search results for glossary items prominently."""
|
||||
|
||||
@@ -655,10 +654,10 @@ Index: Python-3.13.11/Doc/tools/extensions/glossary_search.py
|
||||
app.connect('doctree-resolved', process_glossary_nodes)
|
||||
app.connect('build-finished', write_glossary_json)
|
||||
|
||||
Index: Python-3.13.11/Doc/tools/extensions/implementation_detail.py
|
||||
Index: Python-3.13.6/Doc/tools/extensions/implementation_detail.py
|
||||
===================================================================
|
||||
--- Python-3.13.11.orig/Doc/tools/extensions/implementation_detail.py 2025-12-05 17:06:33.000000000 +0100
|
||||
+++ Python-3.13.11/Doc/tools/extensions/implementation_detail.py 2025-12-18 23:36:11.849650427 +0100
|
||||
--- Python-3.13.6.orig/Doc/tools/extensions/implementation_detail.py 2025-08-06 15:05:20.000000000 +0200
|
||||
+++ Python-3.13.6/Doc/tools/extensions/implementation_detail.py 2025-08-07 12:16:58.258140488 +0200
|
||||
@@ -1,17 +1,10 @@
|
||||
"""Support for marking up implementation details."""
|
||||
|
||||
@@ -709,10 +708,10 @@ Index: Python-3.13.11/Doc/tools/extensions/implementation_detail.py
|
||||
app.add_directive("impl-detail", ImplementationDetail)
|
||||
|
||||
return {
|
||||
Index: Python-3.13.11/Doc/tools/extensions/issue_role.py
|
||||
Index: Python-3.13.6/Doc/tools/extensions/issue_role.py
|
||||
===================================================================
|
||||
--- Python-3.13.11.orig/Doc/tools/extensions/issue_role.py 2025-12-05 17:06:33.000000000 +0100
|
||||
+++ Python-3.13.11/Doc/tools/extensions/issue_role.py 2025-12-18 23:36:11.849838302 +0100
|
||||
--- Python-3.13.6.orig/Doc/tools/extensions/issue_role.py 2025-08-06 15:05:20.000000000 +0200
|
||||
+++ Python-3.13.6/Doc/tools/extensions/issue_role.py 2025-08-07 12:16:58.258306293 +0200
|
||||
@@ -1,22 +1,18 @@
|
||||
"""Support for referencing issues in the tracker."""
|
||||
|
||||
@@ -758,10 +757,10 @@ Index: Python-3.13.11/Doc/tools/extensions/issue_role.py
|
||||
app.add_role("issue", BPOIssue())
|
||||
app.add_role("gh", GitHubIssue())
|
||||
|
||||
Index: Python-3.13.11/Doc/tools/extensions/misc_news.py
|
||||
Index: Python-3.13.6/Doc/tools/extensions/misc_news.py
|
||||
===================================================================
|
||||
--- Python-3.13.11.orig/Doc/tools/extensions/misc_news.py 2025-12-05 17:06:33.000000000 +0100
|
||||
+++ Python-3.13.11/Doc/tools/extensions/misc_news.py 2025-12-18 23:36:11.850033510 +0100
|
||||
--- Python-3.13.6.orig/Doc/tools/extensions/misc_news.py 2025-08-06 15:05:20.000000000 +0200
|
||||
+++ Python-3.13.6/Doc/tools/extensions/misc_news.py 2025-08-07 12:16:58.258481107 +0200
|
||||
@@ -1,7 +1,5 @@
|
||||
"""Support for including Misc/NEWS."""
|
||||
|
||||
@@ -814,10 +813,10 @@ Index: Python-3.13.11/Doc/tools/extensions/misc_news.py
|
||||
app.add_directive("miscnews", MiscNews)
|
||||
|
||||
return {
|
||||
Index: Python-3.13.11/Doc/tools/extensions/patchlevel.py
|
||||
Index: Python-3.13.6/Doc/tools/extensions/patchlevel.py
|
||||
===================================================================
|
||||
--- Python-3.13.11.orig/Doc/tools/extensions/patchlevel.py 2025-12-05 17:06:33.000000000 +0100
|
||||
+++ Python-3.13.11/Doc/tools/extensions/patchlevel.py 2025-12-18 23:36:11.850217264 +0100
|
||||
--- Python-3.13.6.orig/Doc/tools/extensions/patchlevel.py 2025-08-06 15:05:20.000000000 +0200
|
||||
+++ Python-3.13.6/Doc/tools/extensions/patchlevel.py 2025-08-07 12:16:58.258716335 +0200
|
||||
@@ -3,7 +3,7 @@
|
||||
import re
|
||||
import sys
|
||||
@@ -855,10 +854,10 @@ Index: Python-3.13.11/Doc/tools/extensions/patchlevel.py
|
||||
version = f"{info.major}.{info.minor}"
|
||||
release = f"{info.major}.{info.minor}.{info.micro}"
|
||||
if info.releaselevel != "final":
|
||||
Index: Python-3.13.11/Doc/tools/extensions/pydoc_topics.py
|
||||
Index: Python-3.13.6/Doc/tools/extensions/pydoc_topics.py
|
||||
===================================================================
|
||||
--- Python-3.13.11.orig/Doc/tools/extensions/pydoc_topics.py 2025-12-05 17:06:33.000000000 +0100
|
||||
+++ Python-3.13.11/Doc/tools/extensions/pydoc_topics.py 2025-12-18 23:36:11.850437755 +0100
|
||||
--- Python-3.13.6.orig/Doc/tools/extensions/pydoc_topics.py 2025-08-06 15:05:20.000000000 +0200
|
||||
+++ Python-3.13.6/Doc/tools/extensions/pydoc_topics.py 2025-08-07 12:16:58.258911962 +0200
|
||||
@@ -1,21 +1,23 @@
|
||||
"""Support for building "topic help" for pydoc."""
|
||||
|
||||
|
||||
@@ -8,10 +8,10 @@ Date: Tue Nov 26 13:46:33 2024 +0000
|
||||
Lib/test/test_sysconfig.py | 67 ---------------------------------------------
|
||||
1 file changed, 1 insertion(+), 66 deletions(-)
|
||||
|
||||
Index: Python-3.13.9/Lib/test/test_sysconfig.py
|
||||
Index: Python-3.13.5/Lib/test/test_sysconfig.py
|
||||
===================================================================
|
||||
--- Python-3.13.9.orig/Lib/test/test_sysconfig.py 2025-11-04 17:41:28.521386489 +0100
|
||||
+++ Python-3.13.9/Lib/test/test_sysconfig.py 2025-11-04 17:42:36.888243505 +0100
|
||||
--- Python-3.13.5.orig/Lib/test/test_sysconfig.py 2025-06-12 19:55:42.184491497 +0200
|
||||
+++ Python-3.13.5/Lib/test/test_sysconfig.py 2025-06-12 19:56:05.737665419 +0200
|
||||
@@ -110,6 +110,7 @@
|
||||
**venv_create_args,
|
||||
)
|
||||
@@ -20,7 +20,7 @@ Index: Python-3.13.9/Lib/test/test_sysconfig.py
|
||||
def test_get_path_names(self):
|
||||
self.assertEqual(get_path_names(), sysconfig._SCHEME_KEYS)
|
||||
|
||||
@@ -611,72 +612,6 @@
|
||||
@@ -604,72 +605,6 @@
|
||||
suffix = sysconfig.get_config_var('EXT_SUFFIX')
|
||||
self.assertTrue(suffix.endswith('-darwin.so'), suffix)
|
||||
|
||||
|
||||
@@ -1,30 +0,0 @@
|
||||
From 4bb41b28d5bac09bccd636d8c5fefe1a462f63a7 Mon Sep 17 00:00:00 2001
|
||||
From: Alm <alon.menczer@gmail.com>
|
||||
Date: Mon, 25 Aug 2025 08:56:38 +0300
|
||||
Subject: [PATCH 1/4] Exclude .pyc files from the computed digest in the jit
|
||||
stencils
|
||||
|
||||
---
|
||||
Tools/jit/_targets.py | 3 +++
|
||||
1 file changed, 3 insertions(+)
|
||||
|
||||
Index: Python-3.13.7/Tools/jit/_targets.py
|
||||
===================================================================
|
||||
--- Python-3.13.7.orig/Tools/jit/_targets.py
|
||||
+++ Python-3.13.7/Tools/jit/_targets.py
|
||||
@@ -53,6 +53,9 @@ class _Target(typing.Generic[_S, _R]):
|
||||
hasher.update(PYTHON_EXECUTOR_CASES_C_H.read_bytes())
|
||||
hasher.update((out / "pyconfig.h").read_bytes())
|
||||
for dirpath, _, filenames in sorted(os.walk(TOOLS_JIT)):
|
||||
+ # Exclude cache files from digest computation to ensure reproducible builds.
|
||||
+ if dirpath.endswith("__pycache__"):
|
||||
+ continue
|
||||
for filename in filenames:
|
||||
hasher.update(pathlib.Path(dirpath, filename).read_bytes())
|
||||
return hasher.hexdigest()
|
||||
Index: Python-3.13.7/Misc/NEWS.d/next/Build/2025-08-27-09-52-45.gh-issue-138061.fMVS9w.rst
|
||||
===================================================================
|
||||
--- /dev/null
|
||||
+++ Python-3.13.7/Misc/NEWS.d/next/Build/2025-08-27-09-52-45.gh-issue-138061.fMVS9w.rst
|
||||
@@ -0,0 +1 @@
|
||||
+Ensure reproducible builds by making JIT stencil header generation deterministic.
|
||||
@@ -1,148 +0,0 @@
|
||||
From 19b61747df3d62c822285c488753d6fbdf91e3ac Mon Sep 17 00:00:00 2001
|
||||
From: Daniel Garcia Moreno <daniel.garcia@suse.com>
|
||||
Date: Tue, 23 Sep 2025 10:20:16 +0200
|
||||
Subject: [PATCH 1/2] gh-139257: Support docutils >= 0.22
|
||||
|
||||
---
|
||||
Doc/tools/extensions/pyspecific.py | 69 +++++++++++++++++++++++++------------
|
||||
1 file changed, 47 insertions(+), 22 deletions(-)
|
||||
|
||||
Index: Python-3.13.11/Doc/tools/extensions/pyspecific.py
|
||||
===================================================================
|
||||
--- Python-3.13.11.orig/Doc/tools/extensions/pyspecific.py 2025-12-05 17:06:33.000000000 +0100
|
||||
+++ Python-3.13.11/Doc/tools/extensions/pyspecific.py 2025-12-18 23:38:44.804668556 +0100
|
||||
@@ -1,12 +1,12 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
- pyspecific.py
|
||||
- ~~~~~~~~~~~~~
|
||||
+pyspecific.py
|
||||
+~~~~~~~~~~~~~
|
||||
|
||||
- Sphinx extension with Python doc-specific markup.
|
||||
+Sphinx extension with Python doc-specific markup.
|
||||
|
||||
- :copyright: 2008-2014 by Georg Brandl.
|
||||
- :license: Python license.
|
||||
+:copyright: 2008-2014 by Georg Brandl.
|
||||
+:license: Python license.
|
||||
"""
|
||||
|
||||
import re
|
||||
@@ -22,30 +22,50 @@
|
||||
from sphinx.util.docutils import SphinxDirective
|
||||
|
||||
# Used in conf.py and updated here by python/release-tools/run_release.py
|
||||
-SOURCE_URI = 'https://github.com/python/cpython/tree/3.13/%s'
|
||||
+SOURCE_URI = "https://github.com/python/cpython/tree/3.13/%s"
|
||||
+
|
||||
+
|
||||
+# monkey-patch reST parser to disable alphabetic and roman enumerated lists
|
||||
+def _disable_alphabetic_and_roman(text):
|
||||
+ try:
|
||||
+ # docutils >= 0.22
|
||||
+ from docutils.parsers.rst.states import InvalidRomanNumeralError
|
||||
+
|
||||
+ raise InvalidRomanNumeralError(text)
|
||||
+ except ImportError:
|
||||
+ # docutils < 0.22
|
||||
+ return None
|
||||
+
|
||||
+
|
||||
+from docutils.parsers.rst.states import Body
|
||||
+
|
||||
+Body.enum.converters["loweralpha"] = Body.enum.converters["upperalpha"] = (
|
||||
+ Body.enum.converters["lowerroman"]
|
||||
+) = Body.enum.converters["upperroman"] = _disable_alphabetic_and_roman
|
||||
+
|
||||
|
||||
class PyAwaitableMixin(object):
|
||||
def handle_signature(self, sig, signode):
|
||||
ret = super(PyAwaitableMixin, self).handle_signature(sig, signode)
|
||||
- signode.insert(0, addnodes.desc_annotation('awaitable ', 'awaitable '))
|
||||
+ signode.insert(0, addnodes.desc_annotation("awaitable ", "awaitable "))
|
||||
return ret
|
||||
|
||||
|
||||
class PyAwaitableFunction(PyAwaitableMixin, PyFunction):
|
||||
def run(self):
|
||||
- self.name = 'py:function'
|
||||
+ self.name = "py:function"
|
||||
return PyFunction.run(self)
|
||||
|
||||
|
||||
class PyAwaitableMethod(PyAwaitableMixin, PyMethod):
|
||||
def run(self):
|
||||
- self.name = 'py:method'
|
||||
+ self.name = "py:method"
|
||||
return PyMethod.run(self)
|
||||
|
||||
|
||||
# Support for documenting Opcodes
|
||||
|
||||
-opcode_sig_re = re.compile(r'(\w+(?:\+\d)?)(?:\s*\((.*)\))?')
|
||||
+opcode_sig_re = re.compile(r"(\w+(?:\+\d)?)(?:\s*\((.*)\))?")
|
||||
|
||||
|
||||
def parse_opcode_signature(env, sig, signode):
|
||||
@@ -64,7 +84,7 @@
|
||||
|
||||
# Support for documenting pdb commands
|
||||
|
||||
-pdbcmd_sig_re = re.compile(r'([a-z()!]+)\s*(.*)')
|
||||
+pdbcmd_sig_re = re.compile(r"([a-z()!]+)\s*(.*)")
|
||||
|
||||
# later...
|
||||
# pdbargs_tokens_re = re.compile(r'''[a-zA-Z]+ | # identifiers
|
||||
@@ -80,16 +100,16 @@
|
||||
if m is None:
|
||||
raise ValueError
|
||||
name, args = m.groups()
|
||||
- fullname = name.replace('(', '').replace(')', '')
|
||||
+ fullname = name.replace("(", "").replace(")", "")
|
||||
signode += addnodes.desc_name(name, name)
|
||||
if args:
|
||||
- signode += addnodes.desc_addname(' '+args, ' '+args)
|
||||
+ signode += addnodes.desc_addname(" " + args, " " + args)
|
||||
return fullname
|
||||
|
||||
|
||||
def parse_monitoring_event(env, sig, signode):
|
||||
"""Transform a monitoring event signature into RST nodes."""
|
||||
- signode += addnodes.desc_addname('sys.monitoring.events.', 'sys.monitoring.events.')
|
||||
+ signode += addnodes.desc_addname("sys.monitoring.events.", "sys.monitoring.events.")
|
||||
signode += addnodes.desc_name(sig, sig)
|
||||
return sig
|
||||
|
||||
@@ -102,7 +122,7 @@
|
||||
As such, we link this to ``env-check-consistency``, even though it has
|
||||
nothing to do with the environment consistency check.
|
||||
"""
|
||||
- if app.builder.name != 'gettext':
|
||||
+ if app.builder.name != "gettext":
|
||||
return
|
||||
|
||||
# allow translating deprecated index entries
|
||||
@@ -119,10 +139,15 @@
|
||||
|
||||
|
||||
def setup(app):
|
||||
- app.add_object_type('opcode', 'opcode', '%s (opcode)', parse_opcode_signature)
|
||||
- app.add_object_type('pdbcommand', 'pdbcmd', '%s (pdb command)', parse_pdb_command)
|
||||
- app.add_object_type('monitoring-event', 'monitoring-event', '%s (monitoring event)', parse_monitoring_event)
|
||||
- app.add_directive_to_domain('py', 'awaitablefunction', PyAwaitableFunction)
|
||||
- app.add_directive_to_domain('py', 'awaitablemethod', PyAwaitableMethod)
|
||||
- app.connect('env-check-consistency', patch_pairindextypes)
|
||||
- return {'version': '1.0', 'parallel_read_safe': True}
|
||||
+ app.add_object_type("opcode", "opcode", "%s (opcode)", parse_opcode_signature)
|
||||
+ app.add_object_type("pdbcommand", "pdbcmd", "%s (pdb command)", parse_pdb_command)
|
||||
+ app.add_object_type(
|
||||
+ "monitoring-event",
|
||||
+ "monitoring-event",
|
||||
+ "%s (monitoring event)",
|
||||
+ parse_monitoring_event,
|
||||
+ )
|
||||
+ app.add_directive_to_domain("py", "awaitablefunction", PyAwaitableFunction)
|
||||
+ app.add_directive_to_domain("py", "awaitablemethod", PyAwaitableMethod)
|
||||
+ app.connect("env-check-consistency", patch_pairindextypes)
|
||||
+ return {"version": "1.0", "parallel_read_safe": True}
|
||||
@@ -1,16 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<component type="desktop-application">
|
||||
<id>org.python.IDLE3</id>
|
||||
<launchable type="desktop-id">idle3.desktop</launchable>
|
||||
|
||||
<!-- Copyright 2017 Zbigniew Jędrzejewski-Szmek -->
|
||||
<application>
|
||||
<id type="desktop">idle3.desktop</id>
|
||||
<name>IDLE3</name>
|
||||
<metadata_licence>CC0</metadata_licence>
|
||||
<project_license>Python-2.0</project_license>
|
||||
<summary>Python 3 Integrated Development and Learning Environment</summary>
|
||||
|
||||
<description>
|
||||
<p>
|
||||
IDLE is Python’s Integrated Development and Learning Environment.
|
||||
The GUI is uniform between Windows, Unix, and macOS.
|
||||
The GUI is uniform between Windows, Unix, and Mac OS X.
|
||||
IDLE provides an easy way to start writing, running, and debugging
|
||||
Python code.
|
||||
</p>
|
||||
@@ -19,33 +19,17 @@
|
||||
It provides:
|
||||
</p>
|
||||
<ul>
|
||||
<li>a Python shell window (interactive interpreter) with colorizing of code input, output, and error messages,</li>
|
||||
<li>a multi-window text editor with multiple undo, Python colorizing, smart indent, call tips, auto completion, and other features,</li>
|
||||
<li>search within any window, replace within editor windows, and search through multiple files (grep),</li>
|
||||
<li>a debugger with persistent breakpoints, stepping, and viewing of global and local namespaces.</li>
|
||||
<li>a Python shell window (interactive interpreter) with colorizing of code input, output, and error messages,</li>
|
||||
<li>a multi-window text editor with multiple undo, Python colorizing, smart indent, call tips, auto completion, and other features,</li>
|
||||
<li>search within any window, replace within editor windows, and search through multiple files (grep),</li>
|
||||
<li>a debugger with persistent breakpoints, stepping, and viewing of global and local namespaces.</li>
|
||||
</ul>
|
||||
</description>
|
||||
|
||||
<developer id="org.python">
|
||||
<name>Python Software Foundation</name>
|
||||
</developer>
|
||||
|
||||
<url type="homepage">https://docs.python.org/3/library/idle.html</url>
|
||||
|
||||
<screenshots>
|
||||
<screenshot type="default">
|
||||
<image>https://in.waw.pl/~zbyszek/fedora/idle3-appdata/idle3-main-window.png</image>
|
||||
</screenshot>
|
||||
<screenshot>
|
||||
<image>https://in.waw.pl/~zbyszek/fedora/idle3-appdata/idle3-class-browser.png</image>
|
||||
</screenshot>
|
||||
<screenshot>
|
||||
<image>https://in.waw.pl/~zbyszek/fedora/idle3-appdata/idle3-code-viewer.png</image>
|
||||
</screenshot>
|
||||
<screenshot type="default">http://in.waw.pl/~zbyszek/fedora/idle3-appdata/idle3-main-window.png</screenshot>
|
||||
<screenshot>http://in.waw.pl/~zbyszek/fedora/idle3-appdata/idle3-class-browser.png</screenshot>
|
||||
<screenshot>http://in.waw.pl/~zbyszek/fedora/idle3-appdata/idle3-code-viewer.png</screenshot>
|
||||
</screenshots>
|
||||
|
||||
<project_license>Python-2.0</project_license>
|
||||
<metadata_license>CC0-1.0</metadata_license>
|
||||
<update_contact>zbyszek@in.waw.pl</update_contact>
|
||||
</component>
|
||||
|
||||
</application>
|
||||
|
||||
@@ -1,45 +0,0 @@
|
||||
---
|
||||
Modules/readline.c | 23 +++++++++++++++++++++++
|
||||
1 file changed, 23 insertions(+)
|
||||
|
||||
Index: Python-3.13.9/Modules/readline.c
|
||||
===================================================================
|
||||
--- Python-3.13.9.orig/Modules/readline.c 2025-10-14 15:52:31.000000000 +0200
|
||||
+++ Python-3.13.9/Modules/readline.c 2025-11-20 00:46:45.594286346 +0100
|
||||
@@ -175,6 +175,8 @@
|
||||
return PyUnicode_DecodeLocale(s, "surrogateescape");
|
||||
}
|
||||
|
||||
+static int _py_get_history_length(void);
|
||||
+static void _py_free_history_entry(HIST_ENTRY *entry);
|
||||
|
||||
/*
|
||||
Explicitly disable bracketed paste in the interactive interpreter, even if it's
|
||||
@@ -399,6 +401,27 @@
|
||||
/*[clinic end generated code: output=e161a53e45987dc7 input=b8901bf16488b760]*/
|
||||
{
|
||||
_history_length = length;
|
||||
+
|
||||
+ if (length < 0) {
|
||||
+ stifle_history(-1);
|
||||
+ }
|
||||
+ else {
|
||||
+ int current_length = _py_get_history_length();
|
||||
+ if (length < current_length) {
|
||||
+#if defined(RL_READLINE_VERSION) && RL_READLINE_VERSION >= 0x0500
|
||||
+ HISTORY_STATE *state = history_get_history_state();
|
||||
+ if (state) {
|
||||
+ int i;
|
||||
+ for (i = 0; i < current_length - length; i++) {
|
||||
+ _py_free_history_entry(remove_history(0));
|
||||
+ }
|
||||
+ state->length = length;
|
||||
+ free(state);
|
||||
+ }
|
||||
+#endif
|
||||
+ }
|
||||
+ stifle_history(length);
|
||||
+ }
|
||||
Py_RETURN_NONE;
|
||||
}
|
||||
|
||||
@@ -1,540 +1,3 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 11 21:36:09 UTC 2025 - Matej Cepl <mcepl@cepl.eu>
|
||||
|
||||
- Update to 3.13.11:
|
||||
- gh-142145: Remove quadratic behavior in xml.minidom node ID
|
||||
cache clearing (CVE-2025-12084, bsc#1254997).
|
||||
- gh-119451: Fix a potential memory denial of service in the
|
||||
http.client module. When connecting to a malicious server,
|
||||
it could cause an arbitrary amount of memory to be
|
||||
allocated. This could have led to symptoms including
|
||||
a MemoryError, swapping, out of memory (OOM) killed
|
||||
processes or containers, or even system crashes
|
||||
(bsc#1254400, CVE-2025-13836).
|
||||
- gh-119452: Fix a potential memory denial of service in the
|
||||
http.server module. When a malicious user is connected to
|
||||
the CGI server on Windows, it could cause an arbitrary
|
||||
amount of memory to be allocated. This could have led to
|
||||
symptoms including a MemoryError, swapping, out of memory
|
||||
(OOM) killed processes or containers, or even system
|
||||
crashes.
|
||||
- Library
|
||||
- gh-140797: Revert changes to the undocumented re.Scanner
|
||||
class. Capturing groups are still allowed for backward
|
||||
compatibility, although using them can lead to incorrect
|
||||
result. They will be forbidden in future Python versions.
|
||||
- gh-142206: The resource tracker in the multiprocessing
|
||||
module now uses the original communication protocol, as in
|
||||
Python 3.14.0 and below, by default. This avoids issues
|
||||
with upgrading Python while it is running. (Note that such
|
||||
‘in-place’ upgrades are not tested.) The tracker remains
|
||||
compatible with subprocesses that use new protocol (that
|
||||
is, subprocesses using Python 3.13.10, 3.14.1 and 3.15).
|
||||
- Core and Builtins
|
||||
- gh-142218: Fix crash when inserting into a split table
|
||||
dictionary with a non str key that matches an existing key.
|
||||
- Update to 3.13.10:
|
||||
- Tools/Demos
|
||||
- gh-141442: The iOS testbed now correctly handles test
|
||||
arguments that contain spaces.
|
||||
- Tests
|
||||
- gh-140482: Preserve and restore the state of stty echo as
|
||||
part of the test environment.
|
||||
- gh-140082: Update python -m test to set FORCE_COLOR=1 when
|
||||
being run with color enabled so that unittest which is run
|
||||
by it with redirected output will output in color.
|
||||
- gh-136442: Use exitcode 1 instead of 5 if
|
||||
unittest.TestCase.setUpClass() raises an exception
|
||||
- Security
|
||||
- gh-139700: Check consistency of the zip64 end of central
|
||||
directory record. Support records with “zip64 extensible
|
||||
data” if there are no bytes prepended to the ZIP file.
|
||||
(CVE-2025-8291, bsc#1251305)
|
||||
- gh-137836: Add support of the “plaintext” element, RAWTEXT
|
||||
elements “xmp”, “iframe”, “noembed” and “noframes”, and
|
||||
optionally RAWTEXT element “noscript” in
|
||||
html.parser.HTMLParser.
|
||||
- gh-136063: email.message: ensure linear complexity for
|
||||
legacy HTTP parameters parsing. Patch by Bénédikt Tran.
|
||||
- gh-136065: Fix quadratic complexity in
|
||||
os.path.expandvars() (CVE-2025-6075, bsc#1252974).
|
||||
- gh-119342: Fix a potential memory denial of service in the
|
||||
plistlib module. When reading a Plist file received from
|
||||
untrusted source, it could cause an arbitrary amount of
|
||||
memory to be allocated. This could have led to symptoms
|
||||
including a MemoryError, swapping, out of memory (OOM)
|
||||
killed processes or containers, or even system crashes
|
||||
(CVE-2025-13837, bsc#1254401).
|
||||
- Library
|
||||
- gh-74389: When the stdin being used by a subprocess.Popen
|
||||
instance is closed, this is now ignored in
|
||||
subprocess.Popen.communicate() instead of leaving the class
|
||||
in an inconsistent state.
|
||||
- gh-87512: Fix subprocess.Popen.communicate() timeout
|
||||
handling on Windows when writing large input. Previously,
|
||||
the timeout was ignored during stdin writing, causing the
|
||||
method to block indefinitely if the child process did not
|
||||
consume input quickly. The stdin write is now performed in
|
||||
a background thread, allowing the timeout to be properly
|
||||
enforced.
|
||||
- gh-141473: When subprocess.Popen.communicate() was called
|
||||
with input and a timeout and is called for a second time
|
||||
after a TimeoutExpired exception before the process has
|
||||
died, it should no longer hang.
|
||||
- gh-59000: Fix pdb breakpoint resolution for class methods
|
||||
when the module defining the class is not imported.
|
||||
- gh-141570: Support file-like object raising OSError from
|
||||
fileno() in color detection (_colorize.can_colorize()).
|
||||
This can occur when sys.stdout is redirected.
|
||||
- gh-141659: Fix bad file descriptor errors from
|
||||
_posixsubprocess on AIX.
|
||||
- gh-141497: ipaddress: ensure that the methods
|
||||
IPv4Network.hosts() and IPv6Network.hosts() always return
|
||||
an iterator.
|
||||
- gh-140938: The statistics.stdev() and statistics.pstdev()
|
||||
functions now raise a ValueError when the input contains an
|
||||
infinity or a NaN.
|
||||
- gh-124111: Updated Tcl threading configuration in _tkinter
|
||||
to assume that threads are always available in Tcl 9 and
|
||||
later.
|
||||
- gh-137109: The os.fork and related forking APIs will no
|
||||
longer warn in the common case where Linux or macOS
|
||||
platform APIs return the number of threads in a process and
|
||||
find the answer to be 1 even when a os.register_at_fork()
|
||||
after_in_parent= callback (re)starts a thread.
|
||||
- gh-141314: Fix assertion failure in io.TextIOWrapper.tell()
|
||||
when reading files with standalone carriage return (\r)
|
||||
line endings.
|
||||
- gh-141311: Fix assertion failure in io.BytesIO.readinto()
|
||||
and undefined behavior arising when read position is above
|
||||
capcity in io.BytesIO.
|
||||
- gh-141141: Fix a thread safety issue with
|
||||
base64.b85decode(). Contributed by Benel Tayar.
|
||||
- gh-140911: collections: Ensure that the methods
|
||||
UserString.rindex() and UserString.index() accept
|
||||
collections.UserString instances as the sub argument.
|
||||
- gh-140797: The undocumented re.Scanner class now forbids
|
||||
regular expressions containing capturing groups in its
|
||||
lexicon patterns. Patterns using capturing groups could
|
||||
previously lead to crashes with segmentation fault. Use
|
||||
non-capturing groups (?:…) instead.
|
||||
- gh-140815: faulthandler now detects if a frame or a code
|
||||
object is invalid or freed. Patch by Victor Stinner.
|
||||
- gh-100218: Correctly set errno when socket.if_nametoindex()
|
||||
or socket.if_indextoname() raise an OSError. Patch by
|
||||
Bénédikt Tran.
|
||||
- gh-140875: Fix handling of unclosed character references
|
||||
(named and numerical) followed by the end of file in
|
||||
html.parser.HTMLParser with convert_charrefs=False.
|
||||
- gh-140734: multiprocessing: fix off-by-one error when
|
||||
checking the length of a temporary socket file path. Patch
|
||||
by Bénédikt Tran.
|
||||
- gh-140874: Bump the version of pip bundled in ensurepip to
|
||||
version 25.3
|
||||
- gh-140691: In urllib.request, when opening a FTP URL fails
|
||||
because a data connection cannot be made, the control
|
||||
connection’s socket is now closed to avoid
|
||||
a ResourceWarning.
|
||||
- gh-103847: Fix hang when cancelling process created by
|
||||
asyncio.create_subprocess_exec() or
|
||||
asyncio.create_subprocess_shell(). Patch by Kumar Aditya.
|
||||
- gh-140590: Fix arguments checking for the
|
||||
functools.partial.__setstate__() that may lead to internal
|
||||
state corruption and crash. Patch by Sergey Miryanov.
|
||||
- gh-140634: Fix a reference counting bug in
|
||||
os.sched_param.__reduce__().
|
||||
- gh-140633: Ignore AttributeError when setting a module’s
|
||||
__file__ attribute when loading an extension module
|
||||
packaged as Apple Framework.
|
||||
- gh-140593: xml.parsers.expat: Fix a memory leak that could
|
||||
affect users with ElementDeclHandler() set to a custom
|
||||
element declaration handler. Patch by Sebastian Pipping.
|
||||
- gh-140607: Inside io.RawIOBase.read(), validate that the
|
||||
count of bytes returned by io.RawIOBase.readinto() is valid
|
||||
(inside the provided buffer).
|
||||
- gh-138162: Fix logging.LoggerAdapter with merge_extra=True
|
||||
and without the extra argument.
|
||||
- gh-140474: Fix memory leak in array.array when creating
|
||||
arrays from an empty str and the u type code.
|
||||
- gh-140272: Fix memory leak in the clear() method of the
|
||||
dbm.gnu database.
|
||||
- gh-140041: Fix import of ctypes on Android and Cygwin when
|
||||
ABI flags are present.
|
||||
- gh-139905: Add suggestion to error message for
|
||||
typing.Generic subclasses when cls.__parameters__ is
|
||||
missing due to a parent class failing to call
|
||||
super().__init_subclass__() in its __init_subclass__.
|
||||
- gh-139845: Fix to not print KeyboardInterrupt twice in
|
||||
default asyncio REPL.
|
||||
- gh-139783: Fix inspect.getsourcelines() for the case when
|
||||
a decorator is followed by a comment or an empty line.
|
||||
- gh-70765: http.server: fix default handling of HTTP/0.9
|
||||
requests in BaseHTTPRequestHandler. Previously,
|
||||
BaseHTTPRequestHandler.parse_request() incorrectly waited
|
||||
for headers in the request although those are not supported
|
||||
in HTTP/0.9. Patch by Bénédikt Tran.
|
||||
- gh-139391: Fix an issue when, on non-Windows platforms, it
|
||||
was not possible to gracefully exit a python -m asyncio
|
||||
process suspended by Ctrl+Z and later resumed by fg other
|
||||
than with kill.
|
||||
- gh-101828: Fix 'shift_jisx0213', 'shift_jis_2004',
|
||||
'euc_jisx0213' and 'euc_jis_2004' codecs truncating null
|
||||
chars as they were treated as part of multi-character
|
||||
sequences.
|
||||
- gh-139246: fix: paste zero-width in default repl width is
|
||||
wrong.
|
||||
- gh-90949: Add SetAllocTrackerActivationThreshold() and
|
||||
SetAllocTrackerMaximumAmplification() to xmlparser objects
|
||||
to prevent use of disproportional amounts of dynamic memory
|
||||
from within an Expat parser. Patch by Bénédikt Tran.
|
||||
- gh-139065: Fix trailing space before a wrapped long word if
|
||||
the line length is exactly width in textwrap.
|
||||
- gh-138993: Dedent credits text.
|
||||
- gh-138859: Fix generic type parameterization raising
|
||||
a TypeError when omitting a ParamSpec that has a default
|
||||
which is not a list of types.
|
||||
- gh-138775: Use of python -m with base64 has been fixed to
|
||||
detect input from a terminal so that it properly notices
|
||||
EOF.
|
||||
- gh-98896: Fix a failure in multiprocessing resource_tracker
|
||||
when SharedMemory names contain colons. Patch by Rani
|
||||
Pinchuk.
|
||||
- gh-75989: tarfile.TarFile.extractall() and
|
||||
tarfile.TarFile.extract() now overwrite symlinks when
|
||||
extracting hardlinks. (Contributed by Alexander Enrique
|
||||
Urieles Nieto in gh-75989.)
|
||||
- gh-83424: Allows creating a ctypes.CDLL without name when
|
||||
passing a handle as an argument.
|
||||
- gh-136234: Fix asyncio.WriteTransport.writelines() to be
|
||||
robust to connection failure, by using the same behavior as
|
||||
write().
|
||||
- gh-136057: Fixed the bug in pdb and bdb where next and step
|
||||
can’t go over the line if a loop exists in the line.
|
||||
- gh-135307: email: Fix exception in set_content() when
|
||||
encoding text and max_line_length is set to 0 or None
|
||||
(unlimited).
|
||||
- gh-134453: Fixed subprocess.Popen.communicate() input=
|
||||
handling of memoryview instances that were non-byte shaped
|
||||
on POSIX platforms. Those are now properly cast to a byte
|
||||
shaped view instead of truncating the input. Windows
|
||||
platforms did not have this bug.
|
||||
- gh-102431: Clarify constraints for “logical” arguments in
|
||||
methods of decimal.Context.
|
||||
- IDLE
|
||||
- gh-96491: Deduplicate version number in IDLE shell title
|
||||
bar after saving to a file.
|
||||
- Documentation
|
||||
- gh-141994: xml.sax.handler: Make Documentation of
|
||||
xml.sax.handler.feature_external_ges warn of opening up to
|
||||
external entity attacks. Patch by Sebastian Pipping.
|
||||
- gh-140578: Remove outdated sencence in the documentation
|
||||
for multiprocessing, that implied that
|
||||
concurrent.futures.ThreadPoolExecutor did not exist.
|
||||
- Core and Builtins
|
||||
- gh-142048: Fix quadratically increasing garbage collection
|
||||
delays in free-threaded build.
|
||||
- gh-141930: When importing a module, use Python’s regular
|
||||
file object to ensure that writes to .pyc files are
|
||||
complete or an appropriate error is raised.
|
||||
- gh-120158: Fix inconsistent state when enabling or
|
||||
disabling monitoring events too many times.
|
||||
- gh-141579: Fix sys.activate_stack_trampoline() to properly
|
||||
support the perf_jit backend. Patch by Pablo Galindo.
|
||||
- gh-141312: Fix the assertion failure in the __setstate__
|
||||
method of the range iterator when a non-integer argument is
|
||||
passed. Patch by Sergey Miryanov.
|
||||
- gh-140939: Fix memory leak when bytearray or bytes is
|
||||
formated with the
|
||||
%*b format with a large width that results in
|
||||
%a MemoryError.
|
||||
- gh-140530: Fix a reference leak when raise exc from cause
|
||||
fails. Patch by Bénédikt Tran.
|
||||
- gh-140576: Fixed crash in tokenize.generate_tokens() in
|
||||
case of specific incorrect input. Patch by Mikhail Efimov.
|
||||
- gh-140551: Fixed crash in dict if dict.clear() is called at
|
||||
the lookup stage. Patch by Mikhail Efimov and Inada Naoki.
|
||||
- gh-140471: Fix potential buffer overflow in ast.AST node
|
||||
initialization when encountering malformed _fields
|
||||
containing non-str.
|
||||
- gh-140406: Fix memory leak when an object’s __hash__()
|
||||
method returns an object that isn’t an int.
|
||||
- gh-140306: Fix memory leaks in cross-interpreter channel
|
||||
operations and shared namespace handling.
|
||||
- gh-140301: Fix memory leak of PyConfig in subinterpreters.
|
||||
- gh-140000: Fix potential memory leak when a reference cycle
|
||||
exists between an instance of typing.TypeAliasType,
|
||||
typing.TypeVar, typing.ParamSpec, or typing.TypeVarTuple
|
||||
and its __name__ attribute. Patch by Mikhail Efimov.
|
||||
- gh-139748: Fix reference leaks in error branches of
|
||||
functions accepting path strings or bytes such as compile()
|
||||
and os.system(). Patch by Bénédikt Tran.
|
||||
- gh-139516: Fix lambda colon erroneously start format spec
|
||||
in f-string in tokenizer.
|
||||
- gh-139640: Fix swallowing some syntax warnings in different
|
||||
modules if they accidentally have the same message and are
|
||||
emitted from the same line. Fix duplicated warnings in the
|
||||
finally block.
|
||||
- gh-137400: Fix a crash in the free threading build when
|
||||
disabling profiling or tracing across all threads with
|
||||
PyEval_SetProfileAllThreads() or
|
||||
PyEval_SetTraceAllThreads() or their Python equivalents
|
||||
threading.settrace_all_threads() and
|
||||
threading.setprofile_all_threads().
|
||||
- gh-133400: Fixed Ctrl+D (^D) behavior in _pyrepl module to
|
||||
match old pre-3.13 REPL behavior.
|
||||
- C API
|
||||
- gh-140042: Removed the sqlite3_shutdown call that could
|
||||
cause closing connections for sqlite when used with
|
||||
multiple sub interpreters.
|
||||
- gh-140487: Fix Py_RETURN_NOTIMPLEMENTED in limited C API
|
||||
3.11 and older: don’t treat Py_NotImplemented as immortal.
|
||||
Patch by Victor Stinner.
|
||||
- Remove upstreamed patches:
|
||||
- CVE-2025-13836-http-resp-cont-len.patch
|
||||
- CVE-2025-8291-consistency-zip64.patch
|
||||
- CVE-2025-6075-expandvars-perf-degrad.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 19 19:21:41 UTC 2025 - Matej Cepl <mcepl@suse.com>
|
||||
|
||||
- Add pass-test_write_read_limited_history.patch:
|
||||
|
||||
Fix readline history truncation when length is reduced
|
||||
|
||||
The `readline.set_history_length()` function did not previously
|
||||
truncate the in-memory history when the new length was set to
|
||||
a value smaller than the current number of history items. This
|
||||
could lead to unexpected behavior where `get_history_length()`
|
||||
would still report the old length and writing the history to a
|
||||
file would write more entries than the new limit.
|
||||
|
||||
This patch modifies `set_history_length()` to explicitly
|
||||
remove the oldest history entries using `remove_history()`
|
||||
when the length is decreased, ensuring the in-memory history
|
||||
is correctly truncated to the new limit. This brings the
|
||||
function's behavior in line with expectations and fixes
|
||||
failures in `test_write_read_limited_history`.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 13 17:13:03 UTC 2025 - Matej Cepl <mcepl@cepl.eu>
|
||||
|
||||
- Add CVE-2025-6075-expandvars-perf-degrad.patch avoid simple
|
||||
quadratic complexity vulnerabilities of os.path.expandvars()
|
||||
(CVE-2025-6075, bsc#1252974).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 4 16:44:05 UTC 2025 - Matej Cepl <mcepl@cepl.eu>
|
||||
|
||||
- Add CVE-2025-8291-consistency-zip64.patch which checks
|
||||
consistency of the zip64 end of central directory record, and
|
||||
preventing obfuscation of the payload, i.e., you scanning for
|
||||
malicious content in a ZIP file with one ZIP parser (let's say
|
||||
a Rust one) then unpack it in production with another (e.g.,
|
||||
the Python one) and get malicious content that the other parser
|
||||
did not see (CVE-2025-8291, bsc#1251305)
|
||||
- Readjust patches while synchronizing between openSUSE and SLE trees:
|
||||
- F00251-change-user-install-location.patch
|
||||
- doc-py38-to-py36.patch
|
||||
- gh126985-mv-pyvenv.cfg2getpath.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 15 09:15:38 UTC 2025 - Daniel Garcia <daniel.garcia@suse.com>
|
||||
|
||||
- Update to 3.13.9:
|
||||
- Library
|
||||
- gh-139783: Fix inspect.getsourcelines() for the case when a
|
||||
decorator is followed by a comment or an empty line.
|
||||
- Update to 3.13.8:
|
||||
- macOS
|
||||
- gh-124111: Update macOS installer to use Tcl/Tk 8.6.17.
|
||||
- gh-139573: Updated bundled version of OpenSSL to 3.0.18.
|
||||
- Windows
|
||||
- gh-139573: Updated bundled version of OpenSSL to 3.0.18.
|
||||
- gh-138896: Fix error installing C runtime on non-updated Windows
|
||||
machines
|
||||
- Tools/Demos
|
||||
- gh-139330: SBOM generation tool didn’t cross-check the version
|
||||
and checksum values against the Modules/expat/refresh.sh script,
|
||||
leading to the values becoming out-of-date during routine
|
||||
updates.
|
||||
- gh-137873: The iOS test runner has been simplified, resolving
|
||||
some issues that have been observed using the runner in GitHub
|
||||
Actions and Azure Pipelines test environments.
|
||||
- Tests
|
||||
- gh-139208: Fix regrtest --fast-ci --verbose: don’t ignore the
|
||||
--verbose option anymore. Patch by Victor Stinner.
|
||||
- Security
|
||||
- gh-139400: xml.parsers.expat: Make sure that parent Expat
|
||||
parsers are only garbage-collected once they are no longer
|
||||
referenced by subparsers created by
|
||||
ExternalEntityParserCreate(). Patch by Sebastian Pipping.
|
||||
- gh-139283: sqlite3: correctly handle maximum number of rows to
|
||||
fetch in Cursor.fetchmany and reject negative values for
|
||||
Cursor.arraysize. Patch by Bénédikt Tran.
|
||||
- gh-135661: Fix CDATA section parsing in html.parser.HTMLParser
|
||||
according to the HTML5 standard: ] ]> and ]] > no longer end the
|
||||
CDATA section. Add private method _set_support_cdata() which can
|
||||
be used to specify how to parse <[CDATA[ — as a CDATA section in
|
||||
foreign content (SVG or MathML) or as a bogus comment in the
|
||||
HTML namespace.
|
||||
- Library
|
||||
- gh-139312: Upgrade bundled libexpat to 2.7.3
|
||||
- gh-139289: Do a real lazy-import on rlcompleter in pdb and
|
||||
restore the existing completer after importing rlcompleter.
|
||||
- gh-139210: Fix use-after-free when reporting unknown event in
|
||||
xml.etree.ElementTree.iterparse(). Patch by Ken Jin.
|
||||
- gh-138860: Lazy import rlcompleter in pdb to avoid deadlock in
|
||||
subprocess.
|
||||
- gh-112729: Fix crash when calling _interpreters.create when the
|
||||
process is out of memory.
|
||||
- gh-139076: Fix a bug in the pydoc module that was hiding
|
||||
functions in a Python module if they were implemented in an
|
||||
extension module and the module did not have __all__.
|
||||
- gh-138998: Update bundled libexpat to 2.7.2
|
||||
- gh-130567: Fix possible crash in locale.strxfrm() due to a
|
||||
platform bug on macOS.
|
||||
- gh-138779: Support device numbers larger than 2**63-1 for the
|
||||
st_rdev field of the os.stat_result structure.
|
||||
- gh-128636: Fix crash in PyREPL when os.environ is overwritten
|
||||
with an invalid value for mac
|
||||
- gh-88375: Fix normalization of the robots.txt rules and URLs in
|
||||
the urllib.robotparser module. No longer ignore trailing ?.
|
||||
Distinguish raw special characters ?, = and & from the
|
||||
percent-encoded ones.
|
||||
- gh-138515: email is added to Emscripten build.
|
||||
- gh-111788: Fix parsing errors in the urllib.robotparser module.
|
||||
Don’t fail trying to parse weird paths. Don’t fail trying to
|
||||
decode non-UTF-8 robots.txt files.
|
||||
- gh-138432: zoneinfo.reset_tzpath() will now convert any
|
||||
os.PathLike objects it receives into strings before adding them
|
||||
to TZPATH. It will raise TypeError if anything other than a
|
||||
string is found after this conversion. If given an os.PathLike
|
||||
object that represents a relative path, it will now raise
|
||||
ValueError instead of TypeError, and present a more informative
|
||||
error message.
|
||||
- gh-138008: Fix segmentation faults in the ctypes module due to
|
||||
invalid argtypes. Patch by Dung Nguyen.
|
||||
- gh-60462: Fix locale.strxfrm() on Solaris (and possibly other
|
||||
platforms).
|
||||
- gh-138204: Forbid expansion of shared anonymous memory maps on
|
||||
Linux, which caused a bus error.
|
||||
- gh-138010: Fix an issue where defining a class with a
|
||||
@warnings.deprecated-decorated base class may not invoke the
|
||||
correct __init_subclass__() method in cases involving multiple
|
||||
inheritance. Patch by Brian Schubert.
|
||||
- gh-138133: Prevent infinite traceback loop when sending CTRL^C
|
||||
to Python through strace.
|
||||
- gh-134869: Fix an issue where pressing Ctrl+C during tab
|
||||
completion in the REPL would leave the autocompletion menu in a
|
||||
corrupted state.
|
||||
- gh-137317: inspect.signature() now correctly handles classes
|
||||
that use a descriptor on a wrapped __init__() or __new__()
|
||||
method. Contributed by Yongyu Yan.
|
||||
- gh-137754: Fix import of the zoneinfo module if the C
|
||||
implementation of the datetime module is not available.
|
||||
- gh-137490: Handle ECANCELED in the same way as EINTR in
|
||||
signal.sigwaitinfo() on NetBSD.
|
||||
- gh-137477: Fix inspect.getblock(), inspect.getsourcelines() and
|
||||
inspect.getsource() for generator expressions.
|
||||
- gh-137017: Fix threading.Thread.is_alive to remain True until
|
||||
the underlying OS thread is fully cleaned up. This avoids false
|
||||
negatives in edge cases involving thread monitoring or premature
|
||||
threading.Thread.is_alive calls.
|
||||
- gh-136134: SMTP.auth_cram_md5() now raises an SMTPException
|
||||
instead of a ValueError if Python has been built without MD5
|
||||
support. In particular, SMTP clients will not attempt to use
|
||||
this method even if the remote server is assumed to support it.
|
||||
Patch by Bénédikt Tran.
|
||||
- gh-136134: IMAP4.login_cram_md5 now raises an IMAP4.error if
|
||||
CRAM-MD5 authentication is not supported. Patch by Bénédikt
|
||||
Tran.
|
||||
- gh-135386: Fix opening a dbm.sqlite3 database for reading from
|
||||
read-only file or directory.
|
||||
- gh-126631: Fix multiprocessing forkserver bug which prevented
|
||||
__main__ from being preloaded.
|
||||
- gh-123085: In a bare call to importlib.resources.files(), ensure
|
||||
the caller’s frame is properly detected when importlib.resources
|
||||
is itself available as a compiled module only (no source).
|
||||
- gh-118981: Fix potential hang in
|
||||
multiprocessing.popen_spawn_posix that can happen when the child
|
||||
proc dies early by closing the child fds right away.
|
||||
- gh-78319: UTF8 support for the IMAP APPEND command has been made
|
||||
RFC compliant.
|
||||
- bpo-38735: Fix failure when importing a module from the root
|
||||
directory on unix-like platforms with sys.pycache_prefix set.
|
||||
- bpo-41839: Allow negative priority values from
|
||||
os.sched_get_priority_min() and os.sched_get_priority_max()
|
||||
functions.
|
||||
- Core and Builtins
|
||||
- gh-134466: Don’t run PyREPL in a degraded environment where
|
||||
setting termios attributes is not allowed.
|
||||
- gh-71810: Raise OverflowError for (-1).to_bytes() for signed
|
||||
conversions when bytes count is zero. Patch by Sergey B
|
||||
Kirpichev.
|
||||
- gh-105487: Remove non-existent __copy__(), __deepcopy__(), and
|
||||
__bases__ from the __dir__() entries of types.GenericAlias.
|
||||
- gh-134163: Fix a hang when the process is out of memory inside
|
||||
an exception handler.
|
||||
- gh-138479: Fix a crash when a generic object’s __typing_subst__
|
||||
returns an object that isn’t a tuple.
|
||||
- gh-137576: Fix for incorrect source code being shown in
|
||||
tracebacks from the Basic REPL when PYTHONSTARTUP is given.
|
||||
Patch by Adam Hartz.
|
||||
- gh-132744: Certain calls now check for runaway recursion and
|
||||
respect the system recursion limit.
|
||||
- C API
|
||||
- gh-87135: Attempting to acquire the GIL after runtime
|
||||
finalization has begun in a different thread now causes the
|
||||
thread to hang rather than terminate, which avoids potential
|
||||
crashes or memory corruption caused by attempting to terminate a
|
||||
thread that is running code not specifically designed to support
|
||||
termination. In most cases this hanging is harmless since the
|
||||
process will soon exit anyway.
|
||||
While not officially marked deprecated until 3.14,
|
||||
PyThread_exit_thread is no longer called internally and remains
|
||||
solely for interface compatibility. Its behavior is inconsistent
|
||||
across platforms, and it can only be used safely in the unlikely
|
||||
case that every function in the entire call stack has been
|
||||
designed to support the platform-dependent termination
|
||||
mechanism. It is recommended that users of this function change
|
||||
their design to not require thread termination. In the unlikely
|
||||
case that thread termination is needed and can be done safely,
|
||||
users may migrate to calling platform-specific APIs such as
|
||||
pthread_exit (POSIX) or _endthreadex (Windows) directly.
|
||||
- Build
|
||||
- gh-135734: Python can correctly be configured and built with
|
||||
./configure --enable-optimizations --disable-test-modules.
|
||||
Previously, the profile data generation step failed due to PGO
|
||||
tests where immortalization couldn’t be properly suppressed.
|
||||
Patch by Bénédikt Tran.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 29 06:52:07 UTC 2025 - Daniel Garcia <daniel.garcia@suse.com>
|
||||
|
||||
- Add gh139257-Support-docutils-0.22.patch to fix build with latest
|
||||
docutils (>=0.22) gh#python/cpython#139257
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 22 06:41:53 UTC 2025 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||
|
||||
- Drop AppStream: this results in a different cycle than
|
||||
appstream-glib. As the appdata.xml is controlled by ourselves, we
|
||||
can get away with just manually validating it when changing it.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 18 08:15:31 UTC 2025 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||
|
||||
- Require AppStream to validate appdata file instead of deprecated
|
||||
appstream-glib.
|
||||
- Update idle3.appdata.xml to pass the more pedantic appstreamcli.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 9 10:11:58 UTC 2025 - Daniel Garcia <daniel.garcia@suse.com>
|
||||
|
||||
- Add gh138131-exclude-pycache-from-digest.patch fixing reproducible
|
||||
build for python-nogil.
|
||||
(bsc#1244680, gh#python/cpython#138131)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Aug 15 12:31:08 UTC 2025 - Matej Cepl <mcepl@cepl.eu>
|
||||
|
||||
|
||||
@@ -167,7 +167,7 @@
|
||||
# _md5.cpython-38m-x86_64-linux-gnu.so
|
||||
%define dynlib() %{sitedir}/lib-dynload/%{1}.cpython-%{abi_tag}-%{archname}-%{_os}%{?_gnu}%{?armsuffix}.so
|
||||
Name: %{python_pkg_name}%{psuffix}
|
||||
Version: 3.13.11
|
||||
Version: 3.13.7
|
||||
%define tarversion %{version}
|
||||
%define tarname Python-%{tarversion}
|
||||
Release: 0
|
||||
@@ -231,13 +231,6 @@ Patch42: gh126985-mv-pyvenv.cfg2getpath.patch
|
||||
# PATCH-FIX-UPSTREAM bsc1243155-sphinx-non-determinism.patch bsc#1243155 mcepl@suse.com
|
||||
# Doc: Generate ids for audit_events using docname
|
||||
Patch43: bsc1243155-sphinx-non-determinism.patch
|
||||
# PATCH-FIX-UPSTREAM gh138131-exclude-pycache-from-digest.patch bsc#1244680 daniel.garcia@suse.com
|
||||
Patch44: gh138131-exclude-pycache-from-digest.patch
|
||||
# PATCH-FIX-OPENSUSE gh139257-Support-docutils-0.22.patch gh#python/cpython#139257 daniel.garcia@suse.com
|
||||
Patch45: gh139257-Support-docutils-0.22.patch
|
||||
# PATCH-FIX-UPSTREAM pass-test_write_read_limited_history.patch bsc#[0-9]+ mcepl@suse.com
|
||||
# Fix readline history truncation when length is reduced
|
||||
Patch48: pass-test_write_read_limited_history.patch
|
||||
BuildRequires: autoconf-archive
|
||||
BuildRequires: automake
|
||||
BuildRequires: fdupes
|
||||
@@ -292,6 +285,8 @@ ExcludeArch: aarch64
|
||||
%endif
|
||||
|
||||
%if %{with general}
|
||||
# required for idle3 (.desktop and .appdata.xml files)
|
||||
BuildRequires: appstream-glib
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: gdbm-devel
|
||||
BuildRequires: gettext
|
||||
@@ -557,6 +552,9 @@ rm Lib/site-packages/README.txt
|
||||
# Add vendored bluez-devel files
|
||||
tar xvf %{SOURCE21}
|
||||
|
||||
# Don't fail on warnings when building documentation
|
||||
# sed -i -e '/^SPHINXERRORHANDLING/s/-W//' Doc/Makefile
|
||||
|
||||
%build
|
||||
export SUSE_VERSION="0%{?suse_version}"
|
||||
export SLE_VERSION="0%{?sle_version}"
|
||||
@@ -780,6 +778,7 @@ install -m 644 -D -t %{buildroot}%{_datadir}/applications idle%{python_abi}.desk
|
||||
cp %{SOURCE20} idle%{python_abi}.appdata.xml
|
||||
sed -i -e 's:idle3.desktop:idle%{python_abi}.desktop:g' idle%{python_abi}.appdata.xml
|
||||
install -m 644 -D -t %{buildroot}%{_datadir}/metainfo idle%{python_abi}.appdata.xml
|
||||
appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/idle%{python_abi}.appdata.xml
|
||||
|
||||
%fdupes %{buildroot}/%{_libdir}/python%{python_abi}
|
||||
%endif
|
||||
|
||||
Reference in New Issue
Block a user