# HG changeset patch # User Franz Glasner # Date 1760195708 -7200 # Node ID 202a1f38a622c1582f00928013b5cad1651e638f # Parent 4621bd954a092fc4bd8fa83294daf67fa6edf8ae FIX: New added code snippets did not yet account for the changed return values from "_fromto()" diff -r 4621bd954a09 -r 202a1f38a622 pipcl.py --- 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: