changeset 43:202a1f38a622

FIX: New added code snippets did not yet account for the changed return values from "_fromto()"
author Franz Glasner <fzglas.hg@dom66.de>
date Sat, 11 Oct 2025 17:15:08 +0200
parents 4621bd954a09
children 0a8b06e38e19
files pipcl.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/pipcl.py	Sat Oct 11 17:14:12 2025 +0200
+++ b/pipcl.py	Sat Oct 11 17:15:08 2025 +0200
@@ -1041,7 +1041,7 @@
         # py_limited_api=True, but haven't tested this, and it seems simpler to
         # be strict.)
         for item in ret:
-            from_, (to_abs, to_rel) = self._fromto(item)
+            from_, (to_abs, to_rel, _) = self._fromto(item)
             from_abs = os.path.abspath(from_)
             is_py_limited_api = _extensions_to_py_limited_api.get(from_abs)
             if is_py_limited_api is not None: